Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit a6793ce

Browse files
committed
submodules pb
1 parent d4d6295 commit a6793ce

File tree

3 files changed

+17
-1
lines changed

3 files changed

+17
-1
lines changed

.gitmodules

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ or using 'git clone':
1818

1919
```bash
2020
cd 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

2424
Set up a conda environment containing snakemake, python and the pandas library and activate it:

Snakefile

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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

313323
rule write_report:
314324
input:

0 commit comments

Comments
 (0)