Using Blobtools to remove sequence contamination
1
0
Entering edit mode
3.8 years ago

I would like to use blobtools to filter out contaminating sequences from by genome assemblies. Inputs are assembly fasta, coverage file (bam), and a hits file. How do we make the hits file from a BLAST database?

blobtools • 2.0k views
ADD COMMENT
1
Entering edit mode
3.8 years ago
h.mon 35k

See the documentation here: Hits file. For example, using blast:

blastn \
    -query $ASSEMBLY \
    -db nt \
    -outfmt ’6 qseqid staxids bitscore std’ \
    -max_target_seqs 10 \
    -max_hsps 1 \
    -evalue 1e-25
ADD COMMENT

Login before adding your answer.

Traffic: 1888 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6