![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
BLAST+ creating custom blast database and using blast+ filtering features | deniz | Bioinformatics | 3 | 07-07-2019 09:04 AM |
Custom local blast results | detq182 | Bioinformatics | 3 | 07-07-2019 08:58 AM |
BLAST+ vs BLASTALL (legacy BLAST) | Symphysodon | Bioinformatics | 4 | 10-25-2011 03:52 PM |
BLAST database error - when changing to new BLAST+ local program | biobio | Bioinformatics | 4 | 06-15-2011 06:20 AM |
Parsing BLAST results using BioPerl | Ben Saville | Bioinformatics | 8 | 08-24-2010 08:43 AM |
![]() |
|
Thread Tools |
![]() |
#1 |
Member
Location: UK Join Date: Feb 2011
Posts: 11
|
![]()
I want to edit a blast file in such way that if the query sequence has a gap, that should also comes in the reference sequence like if blast output shows:
query: aa-gcaa || |||| reference: aatgcaa and I want to remove the t from reference and place a gap... query: aa-gcaa || |||| reference: aa-gcaa |
![]() |
![]() |
![]() |
#2 |
Peter (Biopython etc)
Location: Dundee, Scotland, UK Join Date: Jul 2009
Posts: 1,543
|
![]()
Why?
Do you know any programming languages such as Perl, Python, Ruby, Java, etc? If so have a look at BioPerl, Biopython, BioRuby, BioJava etc for libraries to work with BLAST files. |
![]() |
![]() |
![]() |
#3 |
Member
Location: UK Join Date: Feb 2011
Posts: 11
|
![]()
Yes I have tried bioperl. but I am not able to do that. I can extract the fasta sequences from these files only..
|
![]() |
![]() |
![]() |
#4 |
Member
Location: Russia, Irkutsk Join Date: Feb 2011
Posts: 40
|
![]()
Why not use regexps for, say, finding gap-containing piece of query sequence (20 bp or so) in reference and then removing whatever you want from it?
|
![]() |
![]() |
![]() |
#5 |
Member
Location: Oregon Join Date: Feb 2011
Posts: 29
|
![]()
you want to copy your query over your reference...?
If so, why not just pull you query sequence and use those, they already have the gaps you seem to be looking for. But it does sound odd, maybe a better explanation of why would help. |
![]() |
![]() |
![]() |
#6 |
Member
Location: Russia, Irkutsk Join Date: Feb 2011
Posts: 40
|
![]()
Just taking a query won't work, because it can have different nucleotides (but not gaps) at some sites. After some thinking I see that you don't need any regexps, all you need is like
{ reference[i]='-' if query[i]='-'; } for each position in sequences. Hope you can grab some sequences, dude. But yes, I'd like to know why he would want to do something like this. |
![]() |
![]() |
![]() |
#7 |
Member
Location: UK Join Date: Feb 2011
Posts: 11
|
![]()
Thanks for the reply and I am getting these results because of 454 sequencing errors, the query sequence is the gene of rhizobium bacteria and the subject is the sequence from matching contigs. I want to remove these sequencing errors in contigs. So that I can make the phylogeny of the contigs.
|
![]() |
![]() |
![]() |
#8 |
Member
Location: Russia, Irkutsk Join Date: Feb 2011
Posts: 40
|
![]()
But so you lose actual indels that could happen between these two species, don't you? I think that first you should make sure that this particular nucleotide is indeed an error. Maybe, it is of quality much less than of other nearby nucleotides, or it is at long repeat like aaaaaaaaa or something else.
|
![]() |
![]() |
![]() |
#9 |
Member
Location: UK Join Date: Feb 2011
Posts: 11
|
![]()
The contigs are of the rhizobium strains and blast report shows the position where i m getting this type of results have the neighboring nucleotides exactly the same as with query. So I m pretty sure that these are sequencing errors...
|
![]() |
![]() |
![]() |
Thread Tools | |
|
|