This repository was archived by the owner on Jan 25, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed
Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 1+ [submodule "scripts/--force "]
2+ path = scripts/--force
3+ url = https://github.com/CVUA-RRW/taxidTools
4+ [submodule "taxidTools "]
5+ path = taxidTools
6+ url = https://github.com/CVUA-RRW/taxidTools
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ or using 'git clone':
1818
1919``` bash
2020cd path/to/repo/
21- git clone https://github.com/CVUA-RRW/BAnalyzer.git
21+ git clone --recurse-submodules https://github.com/CVUA-RRW/BAnalyzer.git
2222```
2323
2424Set up a conda environment containing snakemake, python and the pandas library and activate it:
Original file line number Diff line number Diff line change @@ -309,6 +309,16 @@ rule db_stats:
309309
310310 echo $(( $(grep -c "^>" {input.unfiltered}) - $(grep -c "^>" {input.seq}) )) > {output.highN}
311311 """
312+
313+ rule get_consensus_level :
314+ input :
315+ distance_table = "reports/distances.tsv" ,
316+ output :
317+ cons = "reports/consensus.tsv"
318+ message :
319+ "Determining consensus ranks"
320+ script :
321+ "../scripts/consensus_levels.py"
312322
313323rule write_report :
314324 input :
You can’t perform that action at this time.
0 commit comments