The use of IT to analyze biological data.

learn more… | top users | synonyms

4
votes
1answer
51 views

Implementing the Waterman-Eggert algorithm

I am trying to implement the Waterman-Eggert algorithm for finding sub-optimal local sequence alignments, but am struggling to understand how to "declump" separate groups of alignments. I have the ...
2
votes
1answer
50 views

Pandas Convert 'NA' to NaN

I just picked up Pandas to do with some data analysis work in my biology research. Turns out one of the proteins I'm analyzing is called 'NA'. I have a matrix with pairwise 'HA, M1, M2, NA, NP...' on ...
0
votes
1answer
22 views

Unsupported Operand Types for /: 'str' and 'float'

I'm having a bit of trouble with understanding this error message here... I have been using the sklearn machine learning tools on some of my data recently. I've tried outputting the Silhouette ...
1
vote
1answer
29 views

UNIX Full Outer Join creates duplicate entries items despite correct order? Could it be the unpaired items creating disorder?

I have two files that I want to join based on their first column. They are sorted, and not all of the values in the first column in FILE1 are in FILE2, and viceversa. FILE1.TXT looks something like ...
1
vote
0answers
22 views

Attempting to Obtain Taxonomic Information from Biopython

I am attempting to alter a previous script that utilizes biopython to fetch information about a species phylum. This script was written to retrieve information one species at a time. I would like to ...
1
vote
1answer
88 views

compute the distance between atoms

I would like to compute the pair wise distances between atoms from PDB files. I don't need to calculate the distance of atoms with same residues and with the nearest residues. How can I do this ...
0
votes
0answers
26 views

Protein Sequences (only 1 representative per family) [closed]

What would be a painless way to get a collection (100 or 1000 etc) of amino acid sequences of proteins with only one protein per family? I am terrible at navigating databases for this, so if anyone ...
0
votes
1answer
39 views

sorting a circular permutation using swap

Some simple organisms have a circular DNA molecule as a genome, where the molecule has no beginning and no end. These circular genomes can be visualized as a sequence of integers written along the ...
1
vote
1answer
34 views

Global alignment using affine gap penalty function

I have to write a program that does global alignment between two sequences using affine gap penalty function. The dynamic algorithm (modified Needleman Wunsch) calculates similarity (maximum score ...
1
vote
1answer
43 views

Specify input files in bash script

My issue is with a bash script I am writing. I need to specify input files for a tool called STAR, which is an aligner for bioinformatic use. It has a flag --readFilesIn. In my case this takes two ...
0
votes
0answers
19 views

Open source genomic annotation tool

I am looking for an open source genomic annotation software with any type of GUI interface. I don't care too much about the OS platform (Linux, Mac or Windows) or the programming language, but I am ...
0
votes
1answer
53 views

Heatmap generation in r

I need some suggestions regarding the heatmap generation with heatmap.2 in R. I have a matrix for gene expression values having 15616rows and 27 columns as matrix for generating the heatmap. The ...
1
vote
1answer
62 views

Perl program to calculate neibouring residues from a pdb file

This is a program to extract the neighboring residues within 4.5 angstrom. I have resolved the program up to the atom numbers. From these I want to extract the residue numbers, residue name, atom № ...
1
vote
0answers
18 views

Trinity failed with differential expression analysis test

I tried running the DE test that comes with Trinity after installing everything that's mentioned on their website, but ran into this error. WARNING: This EdgeR comparison failed... CMD: R --vanilla ...
1
vote
0answers
29 views

forward-backward algorithm for secondary structure prediction

I want to use HMM (forward backward model) for protein secondary structure prediction. Basically, a three-state model is used: States = {H=alpha helix, B=beta sheet, C=coil} and each state has a ...
1
vote
0answers
46 views

Parallel Smith Waterman Algorithm implementation in CUDA - Last 2 rows not being computed

I'm working on a parallel Smith Waterman algorithm implementation in CUDA, but have now run into some trouble. The last two rows of the score matrix are not being computed at all, they just show zero. ...
0
votes
1answer
49 views

ORF and amino identification using BioPython's translate() method— incorrect translations?

I am trying to teach myself bioinformatics, arriving to the party by way of computer science and high performance computing. (Essentially, I'm trying to learn the biology.) I've recently discovered ...
1
vote
0answers
75 views

In python: Calculate percent identity between two strings

I have two strings in a file like this: >1 atggca---------gtgtggcaatcggcacat >2 atggca---------gtgtggcaatcggcacat Using the alignIO function in biopython: from Bio import AlignIO print ...
0
votes
0answers
32 views

Specific bioinformatics research uses for Galaxy

I am a new user to Galaxy and wanted to know from Galaxy users what are the TOP uses for Galaxy! I'm looking for the specific research analysis tools you use. I know Galaxy is an excellent way to ...
1
vote
1answer
57 views

BioPerl module Bio::DB::EntrezGene no longer working

I've been using the Bio::DB::EntrezGene module from BioPerl to retrieve Entrez gene names given the numerical ID. This worked fine for months, and as recently as two weeks ago. Recently, though, it ...
1
vote
1answer
37 views

R code for Retreiving the List of Names from Ensembl database

This is the program written to convert the Entrez IDs into Gene Name using R. But the problem i am encountering is Error in .checkKeysAreWellFormed(keys) : keys must be supplied in a character ...
1
vote
2answers
70 views

What data structure should I use to store a collection of .fasta headers?

I'm trying to write a perl programme that will split up a .fasta header: gi|4140243|dbj|AB022087.1|_Xenopus_laevis_mRNA_for_cytochrome_P450,_complete_cds,_clone_MC1 Into its constituent parts: gi ...
0
votes
0answers
15 views

Comstat2: opening file

Does anyone work with comstat? I'm new at it. After spending hours trying to installed it, now i'm having problems trying to open a directory with only one .tif file. When i open the directory in the ...
1
vote
0answers
51 views

to get molecular name from smiles format using python

I have number of molecules in smiles format and I want to get molecular name from smiles format of molecule and I want to use python for that conversion. for example : CN1CCC[C@H]1c2cccnc2 - ...
1
vote
0answers
49 views

Compute affinity matrix from distance matrix

I used clustal omega to get a distance matrix of 500 protein sequences (they are homologous to each other). I want to use affinity propagation to cluster these sequences. Initially, because I ...
0
votes
1answer
45 views

How solve Fortran runtime error using Amber12

Im using amber12 software used for molecular mechanical force fields for the simulation of biomolecules, i follow the installation instructions described in the next link Intallation of amber in Mac ...
0
votes
1answer
37 views

Output Labels using sklearn.AffinityPropagation

I've got a set of data that is a distance matrix for 1000 homologous protein sequences. I've managed to compute the affinity matrix for this (easy calculation: 1 - distance, in my case). Basically, ...
0
votes
0answers
10 views

where can i get free active perl 5.8/5.10 [closed]

I am Bioinformatics Student. I need to install Bio-perl on my windows machine, I can not find perl 5.10 or 5.8 to get Bio-perl repos. Can anyone help me to find free active perl 5.8/5.10 for windows ...
0
votes
2answers
95 views

Counting previous lines using information from two files in python

I will just delve into explaining my programming problem: I have two files; file #1 which is a gene annotation file and file #2 which is a counts by base position file (just trying to give some ...
4
votes
5answers
84 views

Splicing through a line of a textfile using python

I am trying to create genetic signatures. I have a textfile full of DNA sequences. I want to read in each line from the text file. Then add 4mers which are 4 bases into a dictionary. For example: ...
0
votes
1answer
54 views

How to fetch all records using NCBI Batch Entrez

I have over 200,000 accessions in a flat file, which need to retrieve relevant entry from NBCI. I use Batch Entrez (http://www.ncbi.nlm.nih.gov/sites/batchentrez) to do the job. But encountered ...
0
votes
0answers
22 views

How to compile Autodock Vina in Visual Studio?

I'm trying to compile Autodock Vina on Visual Studio and having trouble figuring out how to do that. I would be thankful if someone can guide me through the process!
-1
votes
2answers
109 views

Downloading sequence file with perl

I am trying to download the sequence file from the gene bank database using perl but it shows error. I don't have any guide to correct my program. Can any one help me with this? The error is in ...
0
votes
0answers
25 views

openModeller console future projection

When using the om_console version for openModeller, I want to be able to compute future projections for a given species and map. I need to know how to setup my request.txt file to do this. Say, I ...
1
vote
0answers
45 views

Error loading “oligo” Bioconductor package

On Windows XP, After updating to R 2.15.3 and updating all libraries, I was no longer able to load the "oligo" package from BioConductor. To recreate: source("http://bioconductor.org/biocLite.R") ...
4
votes
2answers
151 views

Python - Clustering with K-means. Some columns with zero variance

I have a data set consisting of ~200 99x20 arrays of frequencies, with each column summing to unity. I have plotted these using heatmaps like . Each array is pretty sparse, with only about 1-7/20 ...
0
votes
1answer
50 views

for loop is not working within my script

I made a script in bash that run blastx. #!/bin/sh -l # $Id: Barrine.sh federicogaiti $ echo "Right now it is:" date echo "" function usage() { echo "Barrine.sh script by Federico Gaiti, March ...
0
votes
0answers
20 views

ChIP-seq data processing and the output of the program SPP

I have been processing some ChIP-seq data with spp. I looked through the literature and it seemed that spp is indicated as a good program to use (ENCODE uses it). I have found and adapted the two ...
1
vote
2answers
98 views

Finding stop_codon

I am trying to find the start and stop codons in my cds. I have used regular expressions but when I run this python script I get an empty list for the stop codons. Any help is greatly appreciated. ...
0
votes
0answers
73 views

Can any one help me to know how to determine the stem loop length of miRNA using perl

How do I determine the miRNA stem loop length or in general the miRNA structural features
3
votes
1answer
80 views

A hierarchical clustering in php or javascript

I'm currently working on a project in bioinformatics where drugs will be analyzed and results should be grouped according to similarity patterns. For this, I use algorithms such as Euclidean distance ...
3
votes
2answers
160 views

how to convert PHYLIP format to FASTA

I just start working with perl and I have a question. I have PHYLIP file and I need convert it into FASTA. I start writing a script. Firstly, i removed scpaces in lines, now i need to align all lines ...
0
votes
1answer
73 views

In python, how can temporarily extract information from a file, and use that information to manipulate the same file

So I have been coming across this problem a lot lately. Say I have a text file from which I need to read the file, store some values in a list. Next, I want to use that the information in that list to ...
0
votes
1answer
89 views

Perl: Compare Values of 2 Files & Print Values of 2nd File which fall in a particular range of values from 1st file

I have run into a little glitch. I have 2 files which look like this: File1 chr10 179423 181499 181423 2076 + NM_001202464 ZMYND11 chr10 693887 696118 695887 2231 + NR_027151 ...
0
votes
0answers
41 views

python Sequence Viewer API? [closed]

I want to show my DNA sequence in graphical view in my standalone application. I am using python 2.7, Biopython, with Visual Studio C#.net (Ironpython). I am building Open reading frame application. I ...
1
vote
0answers
75 views

Best platform for making Dot plot [closed]

I have to make a Dot plot program ( scpecific Dot-plot of bioinformatic) in which two complete genome of eukaryotes can be aligned. The GUI of that dot-plot should be rich enough that after alignment ...
0
votes
1answer
52 views

what is the correct loop/conditional option for not finding a variable?

I am searching through three text files for one of four specific gene names (stored in $var#). When it is found, it takes the value found after the gene name and adds it to a count. We then average ...
1
vote
3answers
53 views

RNA second structure regexp pattern for HTML5

I need a RegExp to identify RNA Second structure in an HTML5 web page. An RNA Second Structure is simply a string that contains ONLY dot points and balancing parentheses and it's used to identify the ...
2
votes
2answers
42 views

Interpreting a passage from the manual

I'm trying to get some bioinformatics software to run (TE Displayer) but it's simply not working. I think the problem might be in how the software is recognizing the FASTA headers. From the ...
1
vote
1answer
89 views

Finding imperfect and perfect patterns within string

I am working on a Perl script to search within a string of nucleotides for patterns. So far, I've been able to use the following regexs my $regex1 = qr/( ([ACGT]{2}) \2{9,} )/x; my $regex2 = ...

1 2 3 4 5 9