Skip to content

Commit

Permalink
alter extract busco genes to use basal lineages as intended
Browse files Browse the repository at this point in the history
  • Loading branch information
rjchallis committed Dec 13, 2022
1 parent 669867a commit 617a758
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pipeline/rules/extract_busco_genes.smk
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,12 @@ rule extract_busco_genes:
output:
fasta = "{assembly}.busco_genes.fasta"
params:
busco = lambda wc: " --busco ".join(expand("%s/%s.busco.{lineage}/full_table.tsv.gz" % (busco_path, wc.assembly), lineage=config['busco']['lineages'])),
busco = lambda wc: " --busco ".join(expand("%s/%s.busco.{lineage}/full_table.tsv.gz" % (busco_path, wc.assembly), lineage=get_basal_lineages(config))),
threads: 1
log:
"logs/{assembly}/extract_busco_genes.log"
benchmark:
"logs/{assembly}/extract_busco_genes.benchmark.txt"
# script:
# "../lib/extract_busco_genes.py"

shell:
"""(btk pipeline extract-busco-genes \
Expand Down

0 comments on commit 617a758

Please sign in to comment.