We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 345b909 commit c8d17baCopy full SHA for c8d17ba
1 file changed
configure
@@ -86,12 +86,14 @@ targets_all = ' '.join(path.join('$(ANALYSIS_DIR)',
86
out.write("FPKMS = {} \n".format(targets))
87
88
reads = defaultdict(lambda : ([], []))
89
-sample_species = {}
+carriers = defaultdict(list)
90
+carrier_species = {}
91
for i, row in config_file.iterrows():
92
label = row['Label']
93
index = row['Index']
94
mbepc = int(row['MBEPC'])
- species = row['SampleSpecies']
95
+ carrier = row['CarrierID']
96
+ species = row['CarrierSpecies']
97
for glob_spec in glob_specs:
98
glob_spec = (glob_spec
99
.format(seqdir=args.seqdir, label=label, index=index, id=mbepc))
0 commit comments