Skip to content

Commit

Permalink
quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 9, 2024
1 parent 57e0cd4 commit 67926b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions snakePipes/shared/rules/LinkBam.snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ if pipeline=="mRNAseq" and mode in "allelic-counting":

rule samtools_index_external:
input:
"allelic_bams/{sample}.{suffix} + bamExt
"allelic_bams/{sample}.{suffix}" + bamExt
output:
"allelic_bams/{sample}.{suffix} + bamExt + ".bai"
"allelic_bams/{sample}.{suffix}" + bamExt + ".bai"
conda: CONDA_SHARED_ENV
shell: "if [[ ! -f {output[0]} ]]; then samtools index {input[0]}; fi"

Expand Down

0 comments on commit 67926b8

Please sign in to comment.