We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11370e0 commit 0ae73b1Copy full SHA for 0ae73b1
workflow/rules/ml_tree.smk
@@ -5,6 +5,8 @@ rule ml_tree:
5
bestTree = "{workdir}/results/{query_fasta}/3_mltree/{query_fasta}.raxml.bestTree",
6
params:
7
raxml_out_name = "{query_fasta}",
8
+ conda:
9
+ "../envs/raxml-ng.yml"
10
benchmark:
11
"{workdir}/workflow/logs/benchmarks/{query_fasta}_ml_tree.out"
12
cache: True
workflow/scripts/raxml-ng.sh
@@ -7,8 +7,6 @@ raxml_seed=$4
output_tree=$5
tree_num=$6
-module load raxml-ng-0.9.0
-
# recommended # threads
13
thread_num=`raxml-ng --parse --msa $trimmed_msa --model $raxml_model --nofile|grep "Recommended number of threads"|awk -F: {'print $2'}| xargs`
14
echo "Recommended number of thread: $thread_num"
0 commit comments