File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ ex-2a.smk has the following contents:
47
47
48
48
rule bwa_mem:
49
49
input:
50
- sa = "reference/chr22 .sa",
50
+ sa = config['ref_prefix'] + " .sa",
51
51
r1 = "read_data/{sample}/{sample}_R1.fastq.gz",
52
52
r2 = "read_data/{sample}/{sample}_R2.fastq.gz"
53
53
output:
@@ -80,7 +80,7 @@ Review these files and consider the following topics:
80
80
* Specifying resources on a per-rule basis
81
81
82
82
83
- Perform a dry-run
83
+ Perform a dry-run (after fixing the fasta_gunzip rule)
84
84
85
85
snakemake --snakefile ex-2a.smk --configfile config-ex2.yml --dry-run
86
86
@@ -262,7 +262,7 @@ Example 2c dry-run:
262
262
263
263
Running example 2c on GreatLakes:
264
264
265
- snakemake --snakefile ex-2c.smk --configfile config-ex2.yml --use-singularity --jobs 144 --cluster-config jobsub-config.yml --cluster 'sbatch --job-name={cluster.name} --account={cluster.account} --partition={cluster.partition} --nodes={cluster.nodes} --ntasks-per-node={cluster.ntask} --mem={cluster.memory} --time={cluster.time}'
265
+ snakemake --snakefile ex-2c.smk --configfile config-ex2.yml --use-singularity --jobs 144 --cluster-config jobsub-config.yml --cluster 'sbatch --job-name={cluster.name} --account={cluster.account} --partition={cluster.partition} --nodes={cluster.nodes} --ntasks-per-node={cluster.ntask} --mem={cluster.memory} --time={cluster.time}'
266
266
267
267
268
268
## You have reached the end of example 2c ✅
You can’t perform that action at this time.
0 commit comments