File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ def merge_sep_inputs(inputs):
14
14
inputs_format = ' -f ' .join (str (i ) for i in list (inputs )[0 ])
15
15
return inputs_format
16
16
17
+ def merge_sal_inputs (inputs ):
18
+ inputs_format = ',' .join (str (i ) for i in list (inputs )[0 ])
19
+ return inputs_format
20
+
21
+
17
22
def preprocess_cohort_targets (wildcards ):
18
23
ls = []
19
24
ls .append ("analysis/star/STAR_Align_Report.csv" )
@@ -116,7 +121,7 @@ rule salmon_matrix:
116
121
benchmark :
117
122
"benchmarks/salmon/salmon_gene_matrix.benchmark"
118
123
params :
119
- args = lambda wildcards , input : merge_sep_inputs ({input .salmon_tpm_files }),
124
+ args = lambda wildcards , input : merge_sal_inputs ({input .salmon_tpm_files }),
120
125
tx2gene = 'static/deseq2/tx2gene.csv' ,
121
126
outpath = 'analysis/salmon/' ,
122
127
path = "set +eu;source activate %s" % config ['stat_root' ]
You can’t perform that action at this time.
0 commit comments