Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
edna
snakemake_only_obitools
Commits
8f5eb2bf
Commit
8f5eb2bf
authored
Nov 18, 2019
by
peguerin
Browse files
params coma
parent
b0a5f8d5
Changes
2
Hide whitespace changes
Inline
Side-by-side
00-rules/cat_samples.smk
View file @
8f5eb2bf
...
...
@@ -5,5 +5,7 @@ rule cat_samples:
params:
dir='03-cleaned/{run}/',
merged='../03-filtered/{run}.fasta'
log:
'../99-log/09-cat_samples/{run}/{sample}.log'
shell:
'''ls {input} > {log}; cat {params.dir}*.c.r.l.u.fasta > {params.merged}'''
\ No newline at end of file
02-demultiplex/Snakefile
View file @
8f5eb2bf
...
...
@@ -15,7 +15,8 @@ rule all:
expand('../99-log/05-dereplicate_samples/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES),
expand('../99-log/06-goodlength_samples/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES),
expand('../99-log/07-clean_pcrerr/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES),
expand('../99-log/08-rm_internal_samples/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES)
expand('../99-log/08-rm_internal_samples/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES),
expand('../99-log/09-cat_samples/{run}/{sample}.log',zip, run=RUNS, sample=SAMPLES)
include: "../00-rules/filter_samples.smk"
include: "../00-rules/cat_samples.smk"
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment