i need to use a protein-prediction tool called Mutation-Taster (http://www.mutationtaster.org/). Since the input format for the batch query needs a piece of sequence surrounding the mutation, and i have only the position of the mutation within a chromosome, i need the surrounding pieces.

So far i am using biopython and i tried to find a way to receive the DNA-Sequence from the NCBI Entrez databases.

I want assign the chromosome number, nucleic start and end position within the chromosome to receive the dna-sequence for example in fasta format.

I would not mind if it is possible in another programming language.

Thanks in advance for your help

link|improve this question
1  
What code have you tried already? What about it didn't work? – Matt Ball May 14 '11 at 21:35
it is not that the code i wrote didnt worked because of an error, it is because i have not found an API for the ncbi nuccore. – buffkit May 14 '11 at 23:42
right now i am try to access biomart / ensembl via biopython – buffkit May 14 '11 at 23:45
feedback

1 Answer

You should be able to just use Bio.Entrez.EFetch(), the Biopython wrapper the Entrez fetch command. Give the nucleotide database, a suitable accession for the chromosome, and the optional stand, seq_start and seq_stop arguments. See the NCBI Entrez documentation (linked to by Biopython) for details:

http://eutils.ncbi.nlm.nih.gov/entrez/query/static/efetch_help.html

and in particular:

http://eutils.ncbi.nlm.nih.gov/corehtml/query/static/efetchseq_help.html#seqparam

link|improve this answer
i already tried that, but i have to assign the relative position of the gene/preotein. I only have the absolute position in the chromosome, and i need the surrounding nucleotide sequence of the SNP. i tried to find an api for this: ncbi.nlm.nih.gov/projects/mapview/… if you click on display, you´ll get the dna sequence for the specified range, but i dont know how to do that in biopython. – buffkit May 15 '11 at 15:20
Matt Ball already asked you to show what you tried and what didn't work. You could have put that in the original question. If you have the coordinates on the chromosome, then use them with the chromosome's ID. – peterjc May 18 '11 at 11:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.