Skip to content

Commit c3d8829

Browse files
committed
make suffix-array ref consistent
1 parent 8e3f99c commit c3d8829

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

human_chr22/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ex-2a.smk has the following contents:
4747

4848
rule bwa_mem:
4949
input:
50-
sa = "reference/chr22.sa",
50+
sa = config['ref_prefix'] + ".sa",
5151
r1 = "read_data/{sample}/{sample}_R1.fastq.gz",
5252
r2 = "read_data/{sample}/{sample}_R2.fastq.gz"
5353
output:
@@ -80,7 +80,7 @@ Review these files and consider the following topics:
8080
* Specifying resources on a per-rule basis
8181

8282

83-
Perform a dry-run
83+
Perform a dry-run (after fixing the fasta_gunzip rule)
8484

8585
snakemake --snakefile ex-2a.smk --configfile config-ex2.yml --dry-run
8686

@@ -262,7 +262,7 @@ Example 2c dry-run:
262262

263263
Running example 2c on GreatLakes:
264264

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}'
266266

267267

268268
## You have reached the end of example 2c ✅

0 commit comments

Comments
 (0)