Skip to content

Commit

Permalink
Update pipelines chunk number
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzalab committed Sep 18, 2023
1 parent dc10e9e commit b84d602
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipeline/fix_wipe_pairs_reads_parallel.smk
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ checkpoint split_fastq:
"Splitting {input} into chunks."
shell:'''
mkdir data/{wildcards.sample}_chunks
split -l 2000 --numeric-suffixes {input} data/{wildcards.sample}_chunks/chunk --additional-suffix=.fastq
split -l 500000000 --numeric-suffixes {input} data/{wildcards.sample}_chunks/chunk --additional-suffix=.fastq
'''

rule wipe_fastq_parallel:
Expand Down
2 changes: 1 addition & 1 deletion pipeline/fix_wipe_single_reads_parallel.smk
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ checkpoint split_fastq:
"Splitting {input} into chunks."
shell:'''
mkdir data/{wildcards.sample}_chunks
split -l 2000 --numeric-suffixes {input} data/{wildcards.sample}_chunks/chunk --additional-suffix=.fastq
split -l 500000000 --numeric-suffixes {input} data/{wildcards.sample}_chunks/chunk --additional-suffix=.fastq
'''


Expand Down

0 comments on commit b84d602

Please sign in to comment.