Tagged Questions

FASTA is a software package for sequence alignment of proteins and nucleic acids. FASTA is also the name of the file format used by these programs to represent sequences of peptides or nucleotides. The format is a de facto standard in bioinformatics.

learn more… | top users | synonyms

5
votes
3answers
523 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: ...
4
votes
3answers
89 views

Using realloc to expand buffer while reading from file crashes

I am writing some code that needs to read fasta files, so part of my code (included below) is a fasta parser. As a single sequence can span multiple lines in the fasta format, I need to concatenate ...
4
votes
2answers
655 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 ...
2
votes
1answer
84 views

FASTA Algorithm Explanation

I'm trying to understand the basic steps of FASTA algorithm in searching similar sequences of a query sequence in a database. These are the steps of the algorithm: Identify common k-words between I ...
2
votes
2answers
45 views

Parsing file in parallel

I am thinking about a way to parse a fasta-file in parallel. For those of you not knowing fasta-format an example: >SEQUENCE_1 MTEITAAMVKELRESTGAGMMDCKNALSETNGDFDKAVQLLREKGLGKAAKKADRLAAEG ...
2
votes
2answers
84 views

iterate through FASTA entries and rename duplicates

I have a FASTA file with a large number of entries. Although all of the DNA sequences are different, some of the FASTA names are identical. If there are multiple copies of a name I would like to ...
2
votes
2answers
574 views

Binning sequence reads by GC content

I would like to "bin" (split into separate files) a multi-fasta nucleotide sequence file (e.g. a Roche-454 run of ~500,000 reads average read length 250bp). I would like the bins based on GC content ...
2
votes
2answers
426 views

Searching FASTA file for motif and returning title line for each sequence containing the motif

Below is the code I have for searching a FASTA file entered at the command line for a user-provided motif. When I run it and enter a motif that I know is in the file it returns 'Motif not found'. I'm ...
1
vote
3answers
146 views

parsing a fasta file using a generator ( python )

I am trying to parse a large fasta file and I am encountering out of memory errors. Some suggestions to improve the data handling would be appreciated. Currently the program correctly prints out the ...
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
4answers
600 views

Best way to read a FASTA file in c#

I have a FASTA file containing several protein sequences. The format is like ---------------------- >protein1 MYRALRLLARSRPLVRAPAAALASAPGLGGAAVPSFWPPNAAR ...
1
vote
3answers
599 views

Python: Removing characters from beginnings of sequences in fasta format

I have sequences in fasta format that contains primers of 17 bp at the beginning of the sequences. And the primers sometimes have mismatches. I therefore want to remove the first 17 chars of the ...
1
vote
3answers
1k views

How do I merge two FASTA files (one file with line break) in Perl?

I have two following Fasta file: file1.fasta >0 GAATAGATGTTTCAAATGTACCAATTTCTTTCGATT >1 GTTAAGTTATATCAAACTAAATATACATACTATAAA >2 GGGGCTGTGGATAAAGATAATTCCGGGTTCGAATAC file2.qual >0 40 ...
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
150 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
4answers
1k views

How to print a linebreak in a python function?

I have list of strings in my code like: A = ['a1', 'a2', 'a3' ...] B = ['b1', 'b2', 'b3' ...] and I wan to print them but separated by a linebreak, like this: >a1 b1 >a2 b2 >a3 b3 I've ...
0
votes
0answers
73 views

Compairing a 454 assemblage with a Gene Expression Analysis in Python

HELP? i need to map 20bp sequences produced by a gene expression analysis (fastq)to the contigs produced by a 454 assemblage (fasta), here is the kicker i dont care about the tags mapped to the open ...