Skip to content

Commit

Permalink
incrementally updating default tsv format
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffersonfparil committed Dec 9, 2024
1 parent 413494f commit 58d53ef
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion R/io.R
Original file line number Diff line number Diff line change
Expand Up @@ -1203,7 +1203,7 @@ fn_load_genotype = function(fname_geno, ploidy=NULL, force_biallelic=TRUE, retai
"The first 3 columns do not correspond to 'chr', 'pos', and 'allele'."))
return(error)
}
vec_loci_names = paste(df[,1], df[,2], df[,3], df[,4], sep="\t")
vec_loci_names = paste(df[,1], df[,2], df[,4], sep="\t")
# TODO: enable below as the default so time in the future
# vec_loci_names = paste(df[,1], df[,2], df[,3], df[,4], sep="\t")
vec_entries = colnames(df)[c(-1:-4)]
Expand Down
3 changes: 3 additions & 0 deletions man/fn_load_genotype.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 58d53ef

Please sign in to comment.