Troubleshooting
Problem 1: vqc command not found
Symptom:
bash: vqc: command not found
Solution:
# Activate environment
micromamba activate viralQC
# Verify installation
pip show viralQC
# Reinstall if needed
pip install --force-reinstall viralQC
Problem 2: Error downloading datasets
Symptom:
ERROR: Failed to retrieve Nextclade public datasets
Solutions:
Check internet connection
Verify dataset path in
datasets.ymlUpdate tag to most recent version
Problem 3: BLAST database not found
Symptom:
ERROR: BLAST database not found at datasets/blast.fasta
Solution:
vqc get-blast-database
Problem 4: No sequences mapped
Symptom: All sequences show as “Unclassified”
Solutions:
Check input sequence quality
Use relaxed BLAST parameters:
--blast-pident 70 --blast-qcov 50
Add missing datasets to
datasets.yml
Problem 5: Memory errors
Symptom:
Killed/Core dump
Solutions:
Reduce cores:
--cores 2Split FASTA into smaller files
Use machine with more RAM
Problem 6: Permission denied
Solution:
vqc run-from-fasta \
--sequences-fasta seqs.fasta \
--output-dir ~/my_results
Problem 7: GitHub datasets not downloaded
Solutions:
Check repository format:
user/repositoryVerify tag/branch exists
Check GitHub connectivity:
ping github.com
Getting Help
Check logs in
output/logs/directory