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
2e411efe
Commit
2e411efe
authored
Nov 18, 2019
by
peguerin
Browse files
zip
parent
780f0026
Changes
1
Hide whitespace changes
Inline
Side-by-side
02-demultiplex/Snakefile
View file @
2e411efe
...
...
@@ -5,21 +5,18 @@ configfile: "../config.yaml"
(RUNS,SAMPLES) = glob_wildcards('01-raw/{run}/{sample}.fasta')
print(SAMPLES)
print("-------------")
print(RUNS)
rule all:
input:
expand('02-filtered/{run}/{sample}.uniq.fasta',run=RUNS, sample=SAMPLES),
expand('02-filtered/{run}/{sample}.l.u.fasta',run=RUNS, sample=SAMPLES),
expand('02-filtered/{run}/{sample}.r.l.u.fasta',run=RUNS, sample=SAMPLES),
expand('03-cleaned/{run}/{sample}.c.r.l.u.fasta',run=RUNS, sample=SAMPLES),
expand('02-filtered/{run}/{sample}.uniq.fasta',
zip,
run=RUNS, sample=SAMPLES),
expand('02-filtered/{run}/{sample}.l.u.fasta',
zip,
run=RUNS, sample=SAMPLES),
expand('02-filtered/{run}/{sample}.r.l.u.fasta',
zip,
run=RUNS, sample=SAMPLES),
expand('03-cleaned/{run}/{sample}.c.r.l.u.fasta',
zip,
run=RUNS, sample=SAMPLES),
expand('../03-filtered/{run}.fasta',run=config["fastqFiles"]),
expand('../99-log/05-dereplicate_samples/{run}/{sample}.log',run=RUNS, sample=SAMPLES),
expand('../99-log/06-goodlength_samples/{run}/{sample}.log',run=RUNS, sample=SAMPLES),
expand('../99-log/07-clean_pcrerr/{run}/{sample}.log',run=RUNS, sample=SAMPLES),
expand('../99-log/08-rm_internal_samples/{run}/{sample}.log',run=RUNS, sample=SAMPLES)
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)
include: "../00-rules/filter_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