Skip to content

Commit

Permalink
fix a few things in the Snakefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ctb committed Jan 27, 2021
1 parent 42381a0 commit 78ed57d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion genome_grist/conf/Snakefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,11 @@ def make_param_str(ksizes, scaled):
ks = ",".join(ks)
return f"{ks},scaled={scaled}"

try:
os.mkdir('genbank_genomes/')
except:
pass

###

wildcard_constraints:
Expand Down Expand Up @@ -230,7 +235,7 @@ rule sourmash_reads_raw:
input:
r1 = outdir + "/raw/{sample}_1.fastq.gz",
r2 = outdir + "/raw/{sample}_2.fastq.gz",
unp = protected(outdir + "/raw/{sample}_unpaired.fastq.gz"),
unp = outdir + "/raw/{sample}_unpaired.fastq.gz",
output:
sig = outdir + "/raw/{sample}.raw.sig"
conda: "env/sourmash.yml"
Expand Down

0 comments on commit 78ed57d

Please sign in to comment.