File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ def neoantigen_cohort_targets(wildcards):
6
6
"""Generates the targets for this module"""
7
7
ls = []
8
8
ls .append ("analysis/neoantigen/merge/genotypes.tsv" )
9
- ls .append ("analysis/neoantigen/merge/genotypes.p-group.tsv" )
9
+ # ls.append("analysis/neoantigen/merge/genotypes.p-group.tsv")
10
10
#ls.append("files/multiqc/neoantigen/hla_typing_frequency_plot.png")
11
11
#ls.append("files/multiqc/neoantigen/hla_heatmap.txt")
12
12
return ls
@@ -27,6 +27,7 @@ rule arcasHLA_merge:
27
27
shell :
28
28
"""{params.arcasHLA_path}/arcasHLA merge -i {params.outpath} -o {params.outpath}"""
29
29
30
+ '''
30
31
rule arcasHLA_convert:
31
32
input:
32
33
res = "analysis/neoantigen/merge/genotypes.tsv",
@@ -37,7 +38,6 @@ rule arcasHLA_convert:
37
38
shell:
38
39
"""{params.arcasHLA_path}/arcasHLA convert -r p-group {input.res} -o {output.pgroup}"""
39
40
40
- '''
41
41
rule arcasHLA_plot:
42
42
input:
43
43
res = "analysis/neoantigen/merge/genotypes.p-group.tsv",
@@ -54,4 +54,4 @@ rule arcasHLA_plot:
54
54
conda: "../../envs/stat_perl_r.yml"
55
55
shell:
56
56
"{params.path}; Rscript src/neoantigen/hla_plot.R --hla {input.res} --meta {params.meta} --expression {input.expr} --group {params.group} --outdir {params.outpath} --multiqc {params.multiqc}"
57
- '''
57
+ '''
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ _preprocess_threads = 8
7
7
import pandas as pd
8
8
9
9
def merge_sep_inputs (inputs ):
10
- inputs_format = ', ' .join (str (i ) for i in list (inputs )[0 ])
10
+ inputs_format = ' -f ' .join (str (i ) for i in list (inputs )[0 ])
11
11
return inputs_format
12
12
13
13
def preprocess_cohort_targets (wildcards ):
You can’t perform that action at this time.
0 commit comments