To filter out blast annotated reads on the basis of hits
Hello,
I have performed blast on my query file. Now i want to remove the sequences with no hits. How can I do that. ?
genome
sequence
blast
alignment
• 1,917 views
•
link
written
by
faizansaleem1992 •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
How to retrieve fasta sequence after local blast?
written by anikcropscience •Hello, I have created a Blast database using a reference genome. Then, I have performed a local blast search in command line using a gene …
-
Taking out the no hit sequences.
written by vishalchanda364 •Hello all, I have been working around BLAST+ from last couple of days, I am running a metagenomics data, which I alinged to **Cog (Cluster …
-
How to remove aligned sequnces?
written by vishalchanda364 •Hello, I have been working on a metagenomic data, and now trying to remove ribosomal protein using the blastp command in BLAST+, I want to …
-
BLAST taxid to complete linage using biopython on a local machine.
written by lp.vandergouw •Hello all, Using BLAST, I am trying to identify thousands of sequences. To make my job a bit easier, I would like to classify these …
-
to separate assembled reads on the basis of size.
written by faizansaleem1992 •Hello, I have assembled my raw reads into contigs, now I want to remove contigs that have size less that 70,000 bp. How can I …
-
querying a database with a substring contained in a file fasta
written by marghe08 •Hello! I present my problem. I created with the command "makeblastdb" a database that contains my sequences of interest. Now I want to make a …
-
How can I get the fasta sequences of BLASTP results
written by tcf.hcdgHello I have a query sequence and did protein BLAST and get the 100 hits. Now I want to get the sequence of these 100 …
-
Online blast and standalone blast return different hits?
written by ishengomaeLately I have issues with blast. Anyway what I want to do could have different and easier process so I welcome any help. I have …
-
How To Remove Contaminated Scaffold From Genome
written by raj.gzra •<p>hi everyone i have a fungal genome and i want to know that if anybody know, how to remove contaminated scaffolds from genome. if i …
-
[Help]: Extracting Sequence From Fasta Using Blast Informations?
written by francois.maginiot •<p>Hi there! This is my first post on your forum and I hope you'll be able to help me.</p> <p>This is my first intership in …
I am not sure I understand the problem. Is this not a simple matter of 1) parsing the BLAST output to identify which query sequences gave hits, and 2) extracting this subset of sequences from the query FASTA file?
If you do a tab output
-outfmt 6for your blast, get the unique query ids withcut -f 1 blast_output.txt | sort | uniq > ids.txt. Then search Biostars, or code a way to keep sequences that match those ids, or remove the ones that don't.