Tagged Questions

Biopython is a set of freely available tools for biological computation written in Python.

learn more… | top users | synonyms

5
votes
1answer
361 views

Phylo BioPython building trees

I trying to build a tree with BioPython, Phylo module. What I've done so far is this image: each name has a four digit number followed by - and a number: this number refer to the number of times ...
3
votes
2answers
106 views

Bio.IUPAC problem in Biopython

i was testing this simple code from Bio.Alphabet import IUPAC from Bio import Seq my_prot=Seq("AGTACACTGGT",IUPAC.protein) and it gives me this error TypeError: 'module' object is not callable can ...
3
votes
1answer
376 views

Laplacian smoothing to Biopython

I am trying to add Laplacian smoothing support to Biopython's Naive Bayes code 1 for my Bioinformatics project. I have read many documents about Naive Bayes algorithm and Laplacian smoothing and I ...
2
votes
1answer
52 views

Finding various string repeats in python in next 10 characters

So I'm working on a problem where I have to find various string repeats after encountering an initial string, say we take ACTGAC so the data file has sequences that look like: ...
2
votes
1answer
98 views

How to find more than one substring from a string in Python

For example if i have a string 'ATGAGGGATAGAGGGTTGGGAGAGATGGATAGGGGATAGATTG' i have to get substring between ATG and TTG , as we can see there are two of these kinds in a string. I am not able to ...
2
votes
1answer
56 views

Embedding a program within a Python Script [closed]

I created a program that allows the user to enter info about DNA twist,turn, and location, and other info. And the output is a PDB file, however, I want to show the .pdb file in a .pdb viewer within ...
2
votes
4answers
130 views

Finding/Replacing substrings with annotations in an ASCII file in Python

I'm having a little coding issue in a bioinformatics project I'm working on. Basically, my task is to extract motif sequences from a database and use the information to annotate a sequence alignment ...
2
votes
2answers
188 views

Script for parsing a biological sequence from a public database in Python

Greetings to the stackoverflow community, I am currently following a bioinformatics module as part of a biomedical degree (I am basically a python newbie) and the following task is required as part ...
1
vote
1answer
45 views

Biopython error - The system cannot find the file specified

I have encountered an error which I am not able to resolve. I am trying to perform the easiest set of commands that will perform a tBLASTn algorithm, looking for a sequence (sequence specified as a ...
1
vote
1answer
117 views

using Python to retrieve missing sequences -'split' command does not work

I have a set of (protein)sequences that has been found using a software but they are shorter in length than that of the original ones in the database.I downloaded the entire database ,and now i have ...
1
vote
2answers
35 views

How can you join two or more dictionaries created by Bio.SeqIO.index?

I would like to be able to join the two "dictionaries" stored in "indata" and "pairdata", but this code, indata = SeqIO.index(infile, infmt) pairdata = SeqIO.index(pairfile, infmt) ...
1
vote
0answers
59 views

A PWM with gapped alignments in Biopython

I'm trying to generate a Position-Weighted Matrix (PWM) in Biopython from Clustalw multiple sequence alignments. I get a "Wrong Alphabet" error every time I do it with gapped alignments. From ...
1
vote
2answers
195 views

how to reload a Class in python shell?

If I import a module defining a class of the same name belonging to a package, it is imported as a Class, not a Module because of the __init__.py of the parent package. See different import results at ...
1
vote
2answers
141 views

have trouble in installing biopython package

im using mac 10.6.7, and xcode 4 with gcc 4.2 installed. but when i was installing biopython with: python setup.py install on the command, it gives out error on gcc: ...
1
vote
1answer
166 views

Receive DNA-Sequence by range in biopython

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 ...
1
vote
2answers
291 views

Are there any function that can calculate score for the aligned sequences give parameters?

I try to score the already-aligned sequences. Let say seq1 = 'PAVKDLGAEG-ASDKGT--SHVVY----------TI-QLASTFE' seq2 = 'PAVEDLGATG-ANDKGT--LYNIYARNTEGHPRSTV-QLGSTFE' with given parameters substitution ...
1
vote
2answers
101 views

marking up mutation positions in a sequence with html in python

I was wondering if there are any methods in python or biopython that allows one to markup a sequence in html. I would like to mark positions on a sequence (ie colour bases differently) according to ...
1
vote
1answer
61 views

Biopython CodonTable error?

I am writing some code intended to translate ambiguous DNA codes into possible amino acids and I am seeing some strange translation from the Biopython 1.56 package. It appears to be translating ...
1
vote
3answers
300 views

Fetching genomic sequence efficiently in Python?

How can I fetch genomic sequence efficiently using Python? For example, from a .fa file or some other easily obtained format? I basically want an interface fetch_seq(chrom, strand, start, end) which ...
1
vote
2answers
227 views

BioPython: Skipping over bad GIDs with Entrez.esummary/Entrez.read

Sorry about the odd title. I am using eSearch & eSummary to go from Accession Number --> gID --> TaxID Assume that 'accessions' is a list of 20 accession numbers (I do 20 at a time because ...
0
votes
1answer
58 views

Multiple mismatches in DNA search sequence regex

I have written this barbaric script to create permutations of a string of characters that contain n (up to n=4) $'s in all possible combinations of positions within the string. I will eventually ...
0
votes
4answers
87 views

How to select only certain Substrings

from a string say dna = 'ATAGGGATAGGGAGAGAGCGATCGAGCTAG' i got substring say dna.format = 'ATAGGGATAG','GGGAGAGAG' i only want to print substring whose length is divisible by 3 how to do that? im ...
0
votes
2answers
87 views

How to solve IOError: [Errno 2] No such file or directory: in Biopython?

I am trying to parse a fasta file in Biopython using the following code.How can I solve this error? from Bio import SeqIO handle = open("C:/Users/Desktop/kk.fasta", "rU") File ...
0
votes
1answer
90 views

Fasta file description parsing using biopython

I have a fasta file (first sequence is mentioned below) with long description. I need to pick specific description fields. when i used following code; whole description get into string. from Bio ...
0
votes
1answer
24 views

How to get ungapped sequences from blast output?

I am interested in getting ungapped sequences from blast output in fasta format. I thought I could use "hsps_no_gap" but its not working. Is there any method I can use to get this done?
0
votes
2answers
89 views

error comparing sequences - string interpreted as number

I'm trying to do something similar with my previous question. My purpose is to join all sequences that are equal. But this time instead of letters, I have numbers. alignment file can be found here - ...
0
votes
3answers
136 views

How do I set the PYTHONPATH on Cygwin?

In the Biopython installation instructions, it says that if Biopython doesn't work I'm supposed to do this: export PYTHONPATH = $PYTHONPATH':/directory/where/you/put/Biopython' I tried doing that in ...
0
votes
1answer
80 views

Biopython not working on Window 7 64 (import bio function not working)

I am having trouble using biopython as my 'import bio' does not work. I have Window 7 , 64-bit system with Python 2.7.1 with Piston, Django and NumPy site packages installed and they all work well ...
0
votes
1answer
146 views

Getting top 10 sequences of BLAST results Bio Python

I want to get top 10 sequences of BLAST results (just the sequences, no alignment or score or e-value etc). I am inputting a text file containing 5 fasta file. So my output should be top 10 blast hits ...
0
votes
1answer
60 views

biopython import in Enthought Python Distribution?

I am using the Enthought Python Distribution v7.0-2 (32-bit) and I am having trouble importing biopython. Does anyone know how to import biopython in EPD? I can import other libraries like numpy, ...
0
votes
1answer
205 views

How can I run clustalw using Biopython

I am doing research in Bioinformatics. I don't know, How to run clustalw using Biopython. please help me
0
votes
1answer
148 views

Convert GenBank Flatfiles to FASTA

I need to parse a preliminary GenBank Flatfile. The sequence hasn't been published yet, so I can't look it up by accession and download a FASTA file. I'm new to Bioinformatics, so could someone show ...
0
votes
3answers
531 views

return outside function [closed]

Hii I am getting the following error in Biopython: 'return' outside function (filename.. line 26) Below is the code of myfile PLEASE HELP # File Name RandonProteinSequences.py # standard library ...
0
votes
2answers
101 views

Writing out a list of strings to a file

I have a list of abbreviations Letters = ['Ala', 'Asx', 'Cys', ... 'Glx'] I want to output this to a text file that will look this like: #Letters Ala, Asx, Cys, ..... Glx Noob programmer here! I ...
0
votes
1answer
70 views

BioPython Alphabet Soup

Biopython noob here, I'm trying to create a program that uses the Biopython package Alphabet and alphabet module IUPAC to write out the letters of the classes listed to a file called ...
0
votes
1answer
183 views

renumber residues in a protein structure file (pdb)

Hi I am currently involved in making a website aimed at combining all papillomavirus information in a single place. As part of the effort we are curating all known files on public servers (e.g. ...
0
votes
1answer
147 views

Problem with GFF parser by BCBio

I am trying to parse a GFF file using the BCBio GFF parser and I get the following error. Can anybody help me in resolving this problem? Traceback (most recent call last): File "gff_parse.py", line ...
0
votes
1answer
207 views

Convert nested dictionary/xml to flat file for sqlite

I've scoured the net and cannot seem to find an appropriate example so I thought I'd ask... (Btw, much of this is new to me- not all, just most.) Problem: trying to convert a bio/python nested ...
0
votes
3answers
470 views

python multiprocessing each with own subprocess (Kubuntu,Mac)

I've created a script that by default creates one multiprocessing Process; then it works fine. When starting multiple processes, it starts to hang, and not always in the same place. The program's ...
0
votes
2answers
186 views

Why can't python find some modules when I'm running CGI scripts from the web?

I have no idea what could be the problem here: I have some modules from Biopython which I can import easily when using the interactive prompt or executing python scripts via the command-line. The ...
0
votes
4answers
543 views

Subprocess fails to catch the standard output

I am trying to generate tree with fasta file input and Alignment with MuscleCommandline import sys,os, subprocess from Bio import AlignIO from Bio.Align.Applications import MuscleCommandline cline = ...
0
votes
2answers
1k views

BioPython: extracting sequence IDs from a Blast output file

I have a BLAST output file in XML format. It is 22 query sequences with 50 hits reported from each sequence. And I want to extract all the 50x22 hits. This is the code I currently have, but it only ...
0
votes
1answer
281 views

Can you BLAST with BioPython? Anyone have experience with this?

I am going to BLAST several sequences and download the top 100 hits or so from each sequence. Then I will pool the downloaded sequences and remove duplicates. I was thinking of trying out BioPython ...
-1
votes
3answers
78 views

python script problem

I am trying to run a python script, the error that appear is: Traceback (most recent call last): File "/opt/erange/geneMrnaCountsWeighted.py", line 266, in <module> main(sys.argv) File ...
-1
votes
1answer
91 views

Display line starting with word in a file Python regex [closed]

I have a file "abc.txt" with the following contents.. EMBOSS_001 601 FEDSESRRDSLFVPHRPGERRNSNGTTTETEVRKRRLSSYQISMEMLEDS 650 :...::.||...||....|..|.|.... ...
-1
votes
1answer
93 views

How do I parse data in a table using Biopython?

I want to screen a particular column in a table using biopython. I want to parse the table and retain only entries not having "empty spaces" in a particular column. Please any ideas?
-1
votes
2answers
98 views

50 sequences in one line

I have Multiple sequence alignment (clustal) file and I want to read this file and arrange sequences in such a way that it looks more clear and precise in order. I am doing this from biopython using ...
-2
votes
1answer
211 views

How to get distance between two atoms using for loop?

I have one PDB structure. This structure has 13 residues. I have to find the distance between two atoms(only C,O,N,S) using for loop. First I have to find the distance between first and second ...
-3
votes
1answer
69 views

Pairwise seqence alignment in Biopython [closed]

How to do pairwise sequence alignment in Biopython? Can I get sample code for this?