Skip to content
Snippets Groups Projects
Commit 94861ebb authored by Alessio Milanese's avatar Alessio Milanese
Browse files

Update README.md

parent b4acecce
No related branches found
No related tags found
No related merge requests found
......@@ -90,6 +90,15 @@ We use [mOTUs2](https://github.com/motu-tool/mOTUs_v2) to create taxonomic profi
```
With `cat test_sample.motus | grep -v "0.0000000000" | grep -v "#" | wc -l`, we can see that we have 139 detected species.
To count the number of ref-mOTUs you can use:
```
cat test_sample.motus | grep -v "0.0000000000" | grep -c "ref_mOTU_"
```
and for meta-mOTUs:
```
cat test_sample.motus | grep -v "0.0000000000" | grep -c "meta_mOTU_"
```
</p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment