Tagged Questions

The use of IT to analyze biological data.

learn more… | top users | synonyms

21
votes
8answers
1k views

Extracting code from photograph of T-shirt via OCR

I recently saw someone with a T-shirt with some Perl code on the back. I took a photograph of it and cropped out the code: Next I tried to extract the code from the image via OCR, so I installed ...
20
votes
5answers
1k views

How to plot a gene graph for a DNA sequence say ATGCCGCTGCGC?

I need to generate a random walk based on the DNA sequence of a virus, given its base pair sequence of 2k base pairs. The sequence looks like "ATGCGTCGTAACGT". The path should turn right for an A, ...
20
votes
9answers
2k views

Clojure or Scala for bioinformatics/biostatistics/medical research

I am not a professional programmer (my area is medical research) but I am quite capable in C/C++, and various scripting languages. A while back I got intrigued by Lisp but never got the time to ...
19
votes
15answers
835 views

Encouraging good development practices for non-professional programmers?

In my Copious Free Time, I collaborate with a number of scientists (mostly biologists) who develop software, databases, and other tools related to the work they do. Generally these projects are built ...
17
votes
9answers
1k views

Why is Perl used so extensively in Biology research?

I work as support staff in a Biology research institute as a student, and Perl seems to be used everywhere. Not for every single project, but it seems that more than half the people here have a few ...
14
votes
15answers
1k views

Recommended reading for bioinformatics

I'm keen on learning about bioinformatics. I am ideally looking for a short course introduction, with some practical tasks I can get my teeth into immediately to see if there is any interest in it ...
13
votes
11answers
2k views

Bioinformatics: job opportunities?

Anyone have experience in the bioinformatics field comment on what type of programming jobs are available? So far during my coop terms (similar to paid internships), it's been database joins, ...
10
votes
3answers
159 views

'StringCut' to the left or right of a defined position using Mathematica

On reading this question, I thought the following problem would be simple using StringSplit Given the following string, I want to 'cut' it to the left of every "D" such that: I get a List of ...
10
votes
5answers
959 views

Which functional programming languages have bioinformatics libraries?

Which functional programming languages have bioinformatics libraries easily available? (Don't include multi-paradigm languages such as Ruby) Update: Listing which major functional programming ...
9
votes
5answers
409 views

Best way to organize Bioinformatics projects?

I come from a c.s. background but am now doing genomics. My projects include a lot of Bioinformatics typically involving: aligning sequences, comparing overlap etc between sequences and various ...
9
votes
6answers
508 views

What do you think is the best language for Bioinformatics?

I have done a couple research jobs in Bio-informatics and I have used Matlab for them. Matlab had a lot of powerful tools and was easy to use. I did thinks with genome sequencing and predicting ...
9
votes
4answers
543 views

Python, Huge Iteration Performance Problem

I'm doing an iteration through 3 words, each about 5 million characters long, and I want to find sequences of 20 characters that identifies each word. That is, I want to find all sequences of length ...
8
votes
5answers
215 views

Algorithm help! Fast algorithm in searching for a string with its partner

I am looking for a fast algorithm for search purpose in a huge string (it's a organism genome sequence composed of hundreds of millions to billions of chars). There are only 4 chars {A,C,G,T} ...
8
votes
6answers
171 views

Algorithm for placing a grid over a disordered set of points

Given a large set (tens of thousands up to millions) of disordered points represented as 3D Cartesian vectors, what's a good algorithm for making a regular square grid (of user-defined spacing) that ...
8
votes
4answers
573 views

Bioinformatics and computer science

How hard is it for a computer science MS student (with a little knowledge in biology) to research problems related to bioinformatics? How much is bioinformatics related to graph algorithms and data ...
8
votes
4answers
536 views

Does a regular expression exist for enzymatic cleavage?

Does a regular expression exist for (theoretical) tryptic cleavage of protein sequences? The cleavage rule for trypsin is: after R or K, but not before P. Example: Cleavage of the sequence ...
8
votes
6answers
382 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 ...
7
votes
2answers
79 views

finding frequent string patterns using python

So I am trying to do this problem where I have to find the most frequent 6-letter string within some lines in python, so I realize one could do something like this: >>> from collections ...
7
votes
3answers
143 views

How to Eliminate Cost-centres in String Taversals and List Comprehensions

I'm implementing a motif finding algorithm from the domain of bioinformatics using Haskell. I wont go into the details of the algorithm other then to say it's branch and bound median string search. I ...
7
votes
1answer
162 views

Python - Iteration over nested lists

I'm stuck on a small but tricky problem since yesterday. What I have is a (possibly infinitely) nested list like this: [1,[2,[3,4]]] or [[1,2],[3,4]] and so on. On each level the lists consist of ...
7
votes
2answers
143 views

Regex Protein Digestion

So, I'm digesting a protein sequence with an enzyme (for your curiosity, Asp-N) which cleaves before the proteins coded by B or D in a single-letter coded sequence. My actual analysis uses ...
7
votes
4answers
159 views

mitosis of a human cell

I'm programming genetic processes in java for my project and I want simulate the mitosis of a human cell. A human cell contains 23 pairs of chromosome. Mitosis is basically a cell division, or ...
7
votes
4answers
1k views

Faster way to split a string and count characters using R?

I'm looking for a faster way to calculate GC content for DNA strings read in from a FASTA file. This boils down to taking a string and counting the number of times that the letter 'G' or 'C' appears. ...
6
votes
4answers
457 views

“average length of the sequences in a fasta file”: Can you improve this Erlang code?

I'm trying to get the mean length of fasta sequences using Erlang. A fasta file looks like this >title1 ATGACTAGCTAGCAGCGATCGACCGTCGTACGC ATCGATCGCATCGATGCTACGATCGATCATATA ...
6
votes
10answers
589 views

Are there any existing solutions for creating a generic DNA sequence database with a website front end?

I'd like to create an rRNA sequence database with a web front end for the lab I work in. It seems common in biology to want to search a large number of sequences using alignment algorithms such as ...
6
votes
7answers
810 views

What's the best way to divide large files in Python for multiprocessing?

I run across a lot of "embarrassingly parallel" projects I'd like to parallelize with the multiprocessing module. However, they often involve reading in huge files (greater than 2gb), processing them ...
6
votes
11answers
5k views

Converting FASTQ to FASTA with SED/AWK

I have a data in that always comes in block of four in the following format (called FASTQ): @SRR018006.2016 GA2:6:1:20:650 length=36 NNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNNGN +SRR018006.2016 ...
5
votes
1answer
126 views

Hidden Markov Model for three-sided dice

I was taught HMM and given this homework problem. I understood a part of it, but I'm not sure if its correct. The problem is: Consider a different game where the dealer is not flipping a coin, ...
5
votes
4answers
175 views

Examples for Topological Sorting on Large DAGs

I am looking for real world applications where topological sorting is performed on large graph sizes. Some fields where I image you could find such instances would be bioinformatics, dependency ...
5
votes
1answer
89 views

Extracting Info from Plain Text and Writing to XML Using DOM

Currently, I'm designing some format conversion tools in the area of glycobiology. The format conversion involves going from a text file to an XML file that is standard in the field. Most of the time, ...
5
votes
5answers
341 views

Validate DNA in C/C++

I am iterating over DNA sequences pulling out chunks of 5-15 bases at a time into C++ std::string objects. Occasionally, my string will contain a non ATCG base, and I want to take an action when this ...
5
votes
3answers
526 views

Efficient file buffering & scanning methods for large files in python

The description of the problem I am having is a bit complicated, and I will err on the side of providing more complete information. For the impatient, here is the briefest way I can summarize it: ...
5
votes
2answers
205 views

How to parse a file, create records and perform manipulations on records including frequency of terms and distance calculations

I'm a student in an intro Perl class, looking for suggestions and feedback on my approach to writing a small (but tricky) program that analyzes data about atoms. My professor encourages forums. I am ...
5
votes
3answers
246 views

How do you use Ruby on Rails for science (if applicable)?

We do research in systems biology. We prefer to use existing data sets, because collecting new biological data is expensive. Thus, a lot of the scripts we write are little more than transformations of ...
5
votes
2answers
157 views

Refining data stored in SQLite - how to join several contacts?

I'm storing contacts between different elements. I want to eliminate elements of certain type and store new contacts of elements which were interconnected by the eliminated element. Problem ...
4
votes
1answer
134 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 ...
4
votes
4answers
176 views

Protein structure visualization

I've been asked to work on Protein structure visualization, something like RasMol where a user will be opening a pdb file to get the protein structure. So I would really appreciate If someone can ...
4
votes
3answers
282 views

Can I use K-means algorithm on a string?

I am working on a python project where I study RNA structure evolution (represented as a string for example: "(((...)))" where the parenthesis represent basepairs). The point being is that I have an ...
4
votes
2answers
351 views

python solutions for managing scientific data dependency graph by specification values

I have a scientific data management problem which seems general, but I can't find an existing solution or even a description of it, which I have long puzzled over. I am about to embark on a major ...
4
votes
5answers
731 views

Changing the x-axis of seqlogo figures in MATLAB

I'm making a large number of seqlogos programmatically. They are hundreds of columns wide and so running a seqlogo normally creates letters that are too thin to see. I've noticed that I only care ...
4
votes
2answers
657 views

multiFASTA file processing

I was curious to know if there is any bioinformatics tool out there able to process a multiFASTA file giving me infos like number of sequences, length, nucleotide/aminoacid content, etc. and maybe ...
4
votes
2answers
320 views

cluster short, homogeneous strings (DNA) according to common sub-patterns and extract consensus of classes

Task: to cluster a large pool of short DNA fragments in classes that share common sub-sequence-patterns and find the consensus sequence of each class. Pool: ca. 300 sequence fragments 8 - 20 ...
4
votes
7answers
397 views

Performing BLAST/SmithWaterman searches directly from my application

I'm working on a small application and thinking about integrating BLAST or other local alignment searches into my application. My searching has only brought up programs, which need to be installed and ...
4
votes
5answers
417 views

Generating Synthetic DNA Sequence with Subtitution Rate

Given these inputs: my $init_seq = "AAAAAAAAAA" #length 10 bp my $sub_rate = 0.003; my $nof_tags = 1000; my @dna = qw( A C G T ); I want to generate: One thousand length-10 tags Substitution ...
3
votes
1answer
55 views

phylogenetic tree comparison

I developed new algorithm for phylogenetic tree comparison(phylogenetic tree is simply rooted binary tree). As an input we have two trees, we want to calculate their similarity percentage. one example ...
3
votes
5answers
186 views

Fast string search using bitwise operators

What is the fastest (parallel?) way to find a substring in a very long string using bitwise operators? e.g. find all positions of "GCAGCTGAAAACA" sequence in a human genome ...
3
votes
2answers
68 views

How does bootstrapping improve the quality of a phylogenetic reconstruction

Hi guys : My understanding of bootstrapping is that you 1) Build a "tree" using some algorithm from a matrix of sequences (nucleotides, lets say). 2) You store that tree. 3) Perturb the matrix ...
3
votes
1answer
181 views

Comparing two large files in Clojure (i.e.; finding unmapped reads in a tophat alignment)

Problem: find ids that are in one file but not in another. Each file is about 6.5 GB. Specifically (for those in the bioinformatics domain), one file is a fastq file of sequencing reads and the ...
3
votes
1answer
98 views

NCBI gene database question

I m trying to find gene_info file with genenames and chromosomal location. However, I can't seem to locate it on NCBI FTP site. Can anyone give me a pointer?
3
votes
4answers
321 views

Perl: Removing duplicates from a large set of data

I'm using Perl to generate a list of unique exons (which are the units of genes). I've generated a file in this format (with hundreds of thousands of lines): chr1 1000 2000 gene1 chr1 3000 4000 ...

1 2 3 4