The use of IT to analyze biological data.

learn more… | top users | synonyms

0
votes
0answers
25 views

Trying to run Perl script on different files at different directories [closed]

I would like to run a Perl script (printseq-lite.pl) on different files located in different directories. I downloaded this script for the internet and what it does is transforms fastq files to fasta ...
-2
votes
3answers
43 views

R: indexes to matrix

I have a matrix call res initially like the following: [,1] [,2] [1,] 0 0 [2,] 0 0 [3,] 0 0 [4,] 0 0 [5,] 0 0 [6,] 0 0 [7,] 0 0 [8,] 0 0 ...
0
votes
0answers
28 views

readFASTA VS read.fasta

I am new to R and having problems with biostrings function readFASTA. The latest version of biostrings in R 3.0.1 is different. The previous version seems to be doing the job. hence i started using ...
-1
votes
2answers
42 views

R: how to initialize and add elements to an array in a loop

I have a matrix with a column of different genes and a corresponding column of the -log(P-values) for each possible SNP for every gene. So the matrix has 3 columns: Gene_lable, SNP and ...
5
votes
3answers
81 views

Populate list with tuples

I'm just fiddling with a simulation of (Mendel's First Law of Inheritance). Before i can let the critters mate and analyze the outcome, the population has to be generated, i.e., a list has to be ...
0
votes
0answers
27 views

Algorithm or requirement behind Bowtie?

BOWTIE maps test reads to a reference genome. Basically it's a String comparison. Reference String could be a million base pair made by combinations of A C T & G, also the test reads, Now what ...
1
vote
4answers
127 views

Retrieve all molecules from smiles file

I am working on .smiles files. File structure of .smiles file is : http://en.wikipedia.org/wiki/Chemical_file_format#SMILES I want to get all the atoms from the smiles file. It means that If there ...
3
votes
1answer
60 views

Relevance Vector Machine

I am looking for a descent implementation of Relevance Vector Machines. Can anyone recommend an python library or C++ implementation that I could interface? Thanks heaps in advance, EL
0
votes
1answer
26 views

Unable to run ComBat script from R's sva library

I am trying to run ComBat script on a dataset with 2 batches, but I am getting errors and I do not know how to inspect code since I am an R newbie. I am running ComBat method in this way: # Load sva ...
0
votes
1answer
40 views

Using perl to sort through PDB files

I've been trying to get my Perl program to sort through a PDB database one file at a time. What I need is a program that reads a file, does a bit of pattern matching, and depending on the outcome, ...
-1
votes
1answer
76 views

Using a for loop in R with a condition

I am trying to write a rscript that will find the annotation for ChIP-seq peaks using biomaRt from the bioconductor package. I am adapting the annotation code from here, ...
1
vote
1answer
176 views

Read a protein fasta file and splitting the read string at Arginine(R) and then blastp the peptides to get the matches?

I have the following fasta file: '>gi|277456704|dbj|ID_P|Gene name LLL MDGFAGSLDDSISAASTSDVQDRLSALESRVQQQEDEITVLKAALADVLRRLAISEDHVASVKKSVSSKV ...
0
votes
1answer
33 views

R normalization with all samples, or just the part that i need?

I am using the edgeR and Limma packages to analyse a RNA-seq count data table. I only need a subset of the data file, therefore my question is: Do I need to normalize my data within all the samples, ...
1
vote
0answers
48 views

mapping mutation to a chromosome location with mapreduce/PIG or Disco

Goal: To map mutation location from file1 to a region or feature from file two. For this you need to make sure that chromosome (chr1) and strands (+/-) are the same before comparing chromosome ...
0
votes
0answers
9 views

merging data from velvet emboss and blastp analyses

I hope someone could help me sort this out. I am working with a marine viral metagenome and I am trying to extrapolate some information on the dataset. So I have three files: 1)contigs.fa >> ...
8
votes
6answers
489 views

How do I change this to “idiomatic” Perl?

I am beginning to delve deeper into Perl, but am having trouble writing "Perl-ly" code instead of writing C in Perl. How can I change the following code to use more Perl idioms, and how should I go ...
0
votes
2answers
30 views

Extracting processed information for a DNA sequence in PHP

Hi to the expert helpers, This is my first question posted, and I see there are fabulous answers received for other questions. My question is below; I want to extract results (output) given after ...
0
votes
1answer
28 views

Error implementing anc.clim in the Phyloclim R Package

I am attempting to use the anc.clim function in phyloclim, but am stuck on an error I don't know how to fix. I have three items in my workspace: etopo is a 50X14 double matrix with the first column ...
1
vote
2answers
90 views

Gene Ontology term Level vs. Gene Ontology term Type

I am facing a problem in finding out the right definition of the level and the type of the Gene Ontology term. I know that the Type of the GO term is related to isA graph without considering the ...
1
vote
1answer
109 views

compute the distance between coordinates

I would like to compute the distances between atoms from PDB files. How can I do this calculation for PDB files ? ATOM 1 N GLY A 23 -10.507 5.621 25.325 1.00 60.45 N ATOM ...
3
votes
1answer
743 views

How do I decide which way to backtrack in the Smith–Waterman algorithm?

I am trying to implement local sequence alignment in Python using the Smith–Waterman algorithm. Here's what I have so far. It gets as far as building the similarity matrix: import sys, string from ...
0
votes
0answers
17 views

Reverse complement of reconstruction model for assembling reads

One way to assemble fragments produced by DNA sequencing (often called reads) is to seek for the shortest common superstring that contains all the reads of a given set of reads. One model for this ...
6
votes
1answer
70 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
69 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 ...
5
votes
2answers
426 views

Dynamic Time Warping vs Needleman-Wunsch_algorithm

I am looking for the differences between Dynamic Time Warping and Needleman-Wunsch algorithm. Basically, they both find an alignment score. I need to calculate alignment(similarity) score between ...
0
votes
1answer
60 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
32 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
41 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
57 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 ...
0
votes
1answer
51 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 ...
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
2answers
170 views

Heatmap of a huge dataset

I have a tab delimited file containing regions and the respective biological entities found in these regions (I have checked for 67, hence you say each region was checked for the presence or absence ...
1
vote
1answer
58 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
24 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
70 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
73 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
31 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
40 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
59 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
57 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
90 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 ...
1
vote
4answers
129 views

Using regex to transform data into a dictionary in Python

I have a dataset with FASTA formatted sequencing, basically like this: >pc284 ATCGCGACTCGAC >pc293 ACCCGACCTCAGC I want to take to use each tag as a key in the dictionary, and store the ...
0
votes
0answers
43 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
69 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
2answers
73 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 ...
1
vote
1answer
45 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 ...
0
votes
0answers
16 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
55 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
61 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
92 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 ...

1 2 3 4 5 9