Skip to content

Commit

Permalink
fix: set container for create_circExplorer_merged_found_counts_table
Browse files Browse the repository at this point in the history
resolves #124
  • Loading branch information
kelly-sovacool committed Oct 22, 2024
1 parent d8f9cf0 commit eb936a5
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions workflow/rules/post_findcircrna_processing.smk
Original file line number Diff line number Diff line change
Expand Up @@ -278,20 +278,21 @@ rule create_circExplorer_merged_found_counts_table:
),
outdir=join(WORKDIR, "results", "{sample}", "circExplorer"),
tmpdir=f"{TEMPDIR}/{str(uuid.uuid4())}",
container: config['containers']['star_ucsc_cufflinks']
shell:
"""
set -exo pipefail
mkdir -p {params.tmpdir}
python3 {params.pythonscript} \\
-b {input.bsj_found_counts} \\
-l {input.linear_spliced_counts} \\
-o {output.found_counts_table}
python3 {params.pythonscript2} \\
--annotationcounts {input.annotation_counts} \\
--allfoundcounts {output.found_counts_table} \\
--countstable {output.count_counts_table}
"""
set -exo pipefail
mkdir -p {params.tmpdir}
python3 {params.pythonscript} \\
-b {input.bsj_found_counts} \\
-l {input.linear_spliced_counts} \\
-o {output.found_counts_table}
python3 {params.pythonscript2} \\
--annotationcounts {input.annotation_counts} \\
--allfoundcounts {output.found_counts_table} \\
--countstable {output.count_counts_table}
"""


if RUN_MAPSPLICE:
Expand Down

0 comments on commit eb936a5

Please sign in to comment.