Skip to content

Commit

Permalink
Remove parameter pointing to RepeatMasker installation that wrongly p…
Browse files Browse the repository at this point in the history
…ointed to RepeatMasker libraries
  • Loading branch information
verku committed Oct 17, 2023
1 parent 1643221 commit f518fd6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions workflow/rules/0.2_repeat_identification.smk
Original file line number Diff line number Diff line change
Expand Up @@ -82,20 +82,17 @@ rule repeatclassifier:
input:
repmo=rules.repeatmodeler.output.repmo,
stk=rules.repeatmodeler.output.stk,
rm_libs=rules.cp_repeatmasker_libs.output,
output:
repmo=REF_DIR + "/repeatmodeler/" + REF_NAME + "/RM_raw.out/consensi.fa.classified",
stk=REF_DIR + "/repeatmodeler/" + REF_NAME + "/RM_raw.out/families-classified.stk",
params:
repma_dir="workflow/resources/RepeatMasker",
log:
"results/logs/0.2_repeat_identification/" + REF_NAME + "_repeatclassifier.log",
threads: 2
singularity:
"docker://quay.io/biocontainers/repeatmodeler:2.0.4--pl5321hdfd78af_0"
shell:
"""
RepeatClassifier -repeatmasker_dir {params.repma_dir} -consensi {input.repmo} -stockholm {input.stk} 2> {log}
RepeatClassifier -consensi {input.repmo} -stockholm {input.stk} 2> {log}
"""


Expand Down

0 comments on commit f518fd6

Please sign in to comment.