-
Notifications
You must be signed in to change notification settings - Fork 9
6. Example Workflows with SPUMONI
Omar Ahmed edited this page Mar 12, 2023
·
2 revisions
This page shows some example workflows to show how you would run spumoni in different scenarios.
- Using a single FASTA file, applying minimizer digestion, and classifying using matching statistics
./spumoni build -r ecoli_genome.fa -o index/ecoli_index -m -M
./spumoni run -r index/ecoli_index -p reads.fa -m -M
- Using a single FASTA file, not using minimizer digestion, and classifying with pseudo-matching lengths and writing to report.
./spumoni build -r ecoli_genome.fa -o index/ecoli_index -P -n
./spumoni run -r index/ecoli_index -p reads.fa -P -c -n - Using a list of FASTA files, using minimizer digestion, performing multi-class classification using matching statistics, and writing to report.
./spumoni build -i file_list.txt -o index/complete_index -M -m
./spumoni run -r index/complete_index -p reads.fa -d -M -c -m- Using a list of FASTA files, not using minimizer digestion, performing multi-class classification using pseudo-matching lengths, and writing to report.
./spumoni build -i file_list.txt -o index/complete_index -P -n
./spumoni run -r index/complete_index -p reads.fa -d -P -c -n