Skip to content

Commit

Permalink
Merge pull request #32 from NCI-CGR/iss31
Browse files Browse the repository at this point in the history
force samples.txt columns to be str
  • Loading branch information
shukwong authored Nov 9, 2021
2 parents 309ec4c + 2b850c3 commit 784d459
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflow/rules/common.smk
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def get_samples(samplesFile):
# read in the samples file, we assume that they are in this order: sample\tbam/cram\tindex
def read_samplesFile(samplesFile):
samplesTable = pd.read_table(samplesFile, sep="\t",
header='infer')
header='infer', dtype=str)
return(samplesTable)


Expand Down

0 comments on commit 784d459

Please sign in to comment.