Skip to content

Commit

Permalink
BUG: fix for group jobs with different conda envs
Browse files Browse the repository at this point in the history
  • Loading branch information
beardymcjohnface committed Feb 8, 2024
1 parent 16a2cc6 commit e379d47
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ rule map_seq_table:
mem_mb = resources["lrg"]["mem"],
mem = str(resources["lrg"]["mem"]) + "MB",
time = resources["lrg"]["time"]
group:
"contigmap"
shell:
"minimap2 -ax sr --secondary=no -t {threads} {input.assembly} {input.seqtable} 2> {log.mm2} "
"| samtools sort -@ {threads} -o {output} 2> {log.stool}; "
Expand Down Expand Up @@ -58,7 +56,5 @@ rule contig_read_taxonomy:
os.path.join(dir["out"]["stderr"], "contig_read_taxonomy.log")
conda:
os.path.join(dir["env"], "pysam.yaml")
group:
"contigmap"
script:
os.path.join(dir["scripts"], "contigReadTaxon.py")

0 comments on commit e379d47

Please sign in to comment.