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.
1
vote
5answers
59 views
extracting fasta sequences based on position
I am a newbie to perl. Still learning.
I have a file in the fasta format. I would like to extract the sequences spanning a particular position. For example, from position 200 to 300
>Contig[0001]
...
0
votes
4answers
88 views
fasta: delete sequences after n length
I have multiple fasta files with 1000s of seqs in each file of varying length. I would like to keep only the first 200 (n) bases from each sequence. How can I do this in Perl?
1
vote
1answer
31 views
How to find sequence with identical name in two very large fasta file and join them with a gap?
I have two very large fasta file, both are around 2GB. They have some sequences share same name, so it is like:
in R1.fasta:
">ABC001 ACTGTGTCGTG
">ABC003
ACTGTGTCGTG
">ABC005
ACTGTGTCGTG
...
0
votes
1answer
30 views
Unable to remove newlines from Emsembl FASTA
I'm trying to find protein motifs from an Ensembl FASTA file. I've gotten the bulk of the script done, such as retrieving the sequence ID and the sequence itself, but I am receiving some funny ...
0
votes
1answer
50 views
matching a header in fasta file and naming with new names
I have a fasta file with different headers like this..
>Ar000001
>Ar000002
>Ar000003
and so on.. Now i would like to change the names to something like this
>Ar000001 => ...
2
votes
1answer
107 views
Perl: How to extract sequences based on gene number and nucleotide length?
I have 2 files, as follows:
file1.txt:
0 117nt, >gene_73|GeneMark.hm... *
0 237nt, >gene_3097|GeneMark.... *
0 237nt, >gene_579|GeneMark.h... *
0 237nt, >gene_988|GeneMark.h... *
0 189nt, ...
1
vote
3answers
93 views
Remove line breaks in a FASTA file
I have a fasta file where the sequences are broken up with newlines. I'd like to remove the newlines. Here's an example of my file:
>accession1
ATGGCCCATG
GGATCCTAGC
>accession2
GATATCCATG
...
-1
votes
1answer
138 views
How to extract fasta sequences in a file which header line matches with list in another file?
I'm a newbie to Perl. I am trying to extract the fasta sequences from one file which matches with lines in another file. The two example files are as follows:
File1.fasta:
...
-1
votes
1answer
80 views
AWK: Write lines into multiple files
I'm trying to extract sequences from a FASTA file using awk.
e.g. the file looks like this and it contains 703 sequences. I want to extract each of them to separate files.
>sequence_1
AACTTGGCCTT
...
-2
votes
1answer
32 views
Converting sequence objects in FASTA file to ids from uniprotkb database [closed]
how do I convert sequence objects in FASTA file to ids from uniprotkb database
0
votes
3answers
43 views
How can I parse a file for match, and print the string prior to matched string in Perl?
I'm trying to parse a GBK file. Basically, I need to return the locus tag and product name of genes that match the pattern. So if the motif I want to search for all predicted gene product, the search ...
1
vote
4answers
97 views
remove periods from fasta file using python
I'm new to python (using 2.7) and I'm trying to take a fasta file of aligned sequences and remove the periods (.) and dashes (-). I'm trying to write a loop so that python goes through each line and ...
1
vote
2answers
123 views
Modifying FASTA headers with Unix command line tools
I'm stuck again with modifying text. I want to alter large text files such as these:
>hg19_ct_UserTrack_3545_691 range=chr1:8121498-8121502 5'pad=0 3'pad=0 strand=+ repeatMasking=none
GATGG
...
2
votes
2answers
43 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 ...
0
votes
4answers
48 views
remove all sequences containg phrase “random”
This is how my input looks like:
>a
AACTCTCTC
CGTGCTCTC
>b_random
ACTGSTSTS
CTCTCTCCT
ATATATA
>c
AACTCTCTC
CGTGCTCTC
>d
AACTCTCTC
CGTGCTCTC
CGTGCTCTC
>e_random
ACTGSTSTS
CTCTCTCCT
...
0
votes
2answers
50 views
What is causing these errors?
Use of uninitialized value $Xentr4 in concatenation (.) or string at Convert1.pl at line 6
I am getting below error
Error opening no such file or directory at Convert1.pl line 6"
...
1
vote
2answers
45 views
Compiling lines from file that are separated by a certain element . Python
File:
>1
ATTTTttttGGGG
ccCgCgGAgggGGT
gggggttttTTTTTTTTT
>2
ATcggGGGGGGA
>3
ATCGGGGGGATTT
gggggttAGTAttt
i'm constructing a function that reads files that have this format.
the format has ...
0
votes
5answers
99 views
Regex to remove new lines up to a specific character
I have a series of strings in a file of the format:
>HEADER_Text1
Information here, yada yada yada
Some more information here, yada yada yada
Even some more information here, yada yada yada
...
0
votes
0answers
68 views
convert molfile to fasta
I am working on bioinformatics project.
I want to convert MDL file (molfile - .mol) to FASTA file using python.
Can anyone tell me how can I do the same?
mol file structure : ...
0
votes
0answers
45 views
1
vote
2answers
115 views
Extracting specific data from a file in JAVA
>1A3B:H|PDBID|CHAIN|SEQUENCE
IVEGSDAEIGMSPWQVMLFRKSPQELLCGASLISDRWVLTAAHCLLYPPWDKNFTENDLLVRIGKHSRTRYERNIEKISM
LEKIYIHPRYNWRENLDRDIALMKLKKPVAFSDYIHPVCLPDRETAASLLQAGYKGRVTGWGNLKETWTANVGKGQPSVL
...
-1
votes
2answers
67 views
Repeating a function over multiple elements in a list
I have written this code
import sys
file = open(sys.argv[1], 'r')
string = ''
for line in file:
if line.startswith(">"):
pass
else:
string = string + line.strip()
#print ...
0
votes
2answers
67 views
Download a Fasta file and write it into a text file
I am using this code to download a fasta sequence file from the pdb website. The pdb id is the string protid.
import java.io.*;
import java.net.URL;
import java.util.Scanner;
public class ...
2
votes
4answers
267 views
How to count amino acids in fasta formated file?
I found the code that parses the fasta frmated file. I need to count how many A, T, G and so on is in each sequence, for example:
>gi|7290019|gb|AAF45486.1| (AE003417) EG:BACR37P7.1 gene product ...
0
votes
2answers
72 views
I can't access hash values
I have a program that creates an array of hashes while parsing a FASTA file. Here is my code
use strict;
use warnings;
my $docName = "A_gen.txt";
my $alleleCount = 0;
my $flag = 1;
my ...
6
votes
3answers
224 views
Finding inverted repeat pattern from a FASTA sequence using python
Suppose my long sequence looks like,
5’-AGGGTTTCCC*TGACCT*TCACTGC*AGGTCA*TGCA-3
The two italics subsequences (here within the two stars) in this long sequence are combinedly called as inverted ...
2
votes
1answer
124 views
perl sequence extraction loop
I have an existing perl one-liner (from the Edwards lab) that works wonderfully to read a text file (named ids.file) that contains one column of IDs and searches a second, specially formatted text ...
2
votes
0answers
171 views
how to plot multiple histograms on the same graph from multiple DNA distance files?
I have 100 fasta files and I would like to plot overlapping histograms of genetic distance matrix to see how much overlap there is between bootstrap replicates of DNA data?
I have figured out how to ...
-2
votes
5answers
96 views
Merge two lines generated from contigs.fa
I have a file generated by assemblers. It looks like following.
>NODE_1_length_211_cov_22.379147
CATTTGCTGAAGAAAAATTACGAGAAATGGAGCACAAGGCTGTTTTTGTGAATGTCAAAC
...
0
votes
1answer
140 views
How do I remove the first line from a FASTA format file during input?
I want to remove the first line during input from a FASTA file, so that my program takes only the amino acid sequence as input.
The first line of a FASTA file starts with > and it contains the ...
2
votes
4answers
222 views
Filtering a FASTA file based on sequence with BioPython
I have a fasta file. From that file, I need to get the only sequences containing GTACAGTAGG and CAACGGTTTTGCC at the end and/or start of the sequence and put them in a new fasta file. So here's an ...
0
votes
2answers
87 views
How to convert multiple perl programs into a ready to install software?
I have multiple perl programs written myself, which calculate genomic parameters, change headers, extract specific sequences from genome data or fasta sequences. Is there any way to build a package/ ...
0
votes
2answers
186 views
how to use awk and a conditional pipe to submit qsub jobs?
I have a file (fasta) that I am using awk to extract the needed fields from (sequences with their headers). I then pipe it to a BLAST program and finally I pipe it to qsub in order to submit a job.
...
0
votes
1answer
142 views
translate a mixed fasta file using python/biopython
so i have a program which fetches a bunch of sequences from a database and downloads them into a fasta file. the problem is that these sequences could be proteins or they could be dna. i'm splitting ...
1
vote
2answers
702 views
Using Biopython (Python) to extract sequence from FASTA file
Ok so I need to extract part of a sequence from a FASTA file, using python (biopython, http://biopython.org/DIST/docs/tutorial/Tutorial.html)
I need to get the first 10 bases from each sequence and ...
1
vote
0answers
107 views
Translating a FASTA file and creating new .fa File with AA sequence using biopython
I'm new to biopython and still experimenting but I've come across a problem. I have a FASTA file, and I want to translate it, output a new FASTA file with the translated sequences and run it into ...
-7
votes
2answers
115 views
Removing spl characters
I have no clue as to how I am supposed to scan through the REBASE file for the sites as the enzymes contain so many special characters.
0
votes
1answer
142 views
test if file is valid FASTA using grep (i.e. full file matching single regular expression)
What is a simple way to test if given file is valid FASTA:
valid_example.fasta
>genename1 atgcgtcactgNNNNNactgat
>genename 2 ACACTTACAGGGCTAC
>genename3 ATCCaACTACGGCTGGACTTGCGGCAT
I ...
1
vote
1answer
244 views
Conversion of GenBank format file to FASTA format
I am quite new to Java and want to build a program that can convert a GenBank text file to FASTA format. Basically there will be two texboxes: one where I will upload the GenBank format file, and a ...
-1
votes
1answer
252 views
Counting di-Amino Acid frequencies (Bigram frequencies) from FASTA files
Given a large amount of FASTA files (the peptidome for various organisms for secreted peptides), how can I read the FASTA files (from UNIProt) with Python (Or Matlab), and count the frequencies of ...
1
vote
1answer
85 views
I need search a pattern in a header line of my file and concatenates the next line with Perl
My multi-fasta archive is in this format:
>miRNA65 dvex2345
CGATGCTAGATGCTATGACAACGATGCCTCG-G
>miRNA60 dvex1234
T-TAA-ACTCATCATCATCATACTCATCATCATCATCAGCATATTAACAAG
>miRNA65 dvex2345
...
1
vote
2answers
265 views
Writing fasta files using R package seqinr?
When I use write.fasta in seqinr, the file that it outputs looks like this:
>Sequence name 1
>Sequence name 2
>Sequence name 3
...etc
Sequence 1 Sequence 2 Sequence 3 ...etc
In other ...
1
vote
6answers
818 views
split a fasta file and rename on the basis of first line
I have a huge file with following content:
filename: input.txt
>chr1
jdlfnhl
dh,ndh
dnh.
dhjl
>chr2
dhfl
dhl
dh;l
>chr3
shgl
sgl
>chr2_random
dgld
I need to split this file in ...
1
vote
4answers
828 views
Concatenating Multiple .fasta Files
I'm trying to concatenate hundreds of .fasta files into a single, large fasta file containing all of the sequences. I haven't found a specific method to accomplish this in the forums. I did come ...
1
vote
1answer
206 views
Bioperl reading fasta sequences
I found that if my fasta file ends with a single line sequence then that sequence returned by Bioperl will have one nucleotide missing. If fasta file ends with the new line then it returns complete ...
1
vote
4answers
243 views
How can I make a histogram of occurences of specific patterns in a FASTA file?
I have written a Perl script for the following bioinformatics question, but unfortunately there is a problem with the output.
Question
From a file of 40,000 unique sequences, unique meaning the ...
1
vote
1answer
170 views
How do I get the correct count for FASTA exact matches?
I have to search the pattern wTTTAYRTTTW, where W = A or T, Y = C or T, R = A or R, in a FASTA file of genome sequence. There should be some mismatch allowed, i.e. exact match string and their ...
1
vote
1answer
112 views
Create an applescript from a perl and a ruby script?
I download protein sequences from http://ncbi.nlm.nih.gov/genomes/FLU/Database/nph-select.cgi#mainform, which are downloaded with filename FASTA.FA. For each protein in the file, it includes one ...
1
vote
2answers
463 views
Scala functional way of processing large scala data with lazy collections
I am trying to figure out memory-efficient AND functional ways to process a large scale of data using strings in scala. I have read many things about lazy collections and have seen quite a bit of code ...
0
votes
1answer
325 views
Split large fasta into mulitple files, can't name them with GI number
I should start out by saying that I'm as new as it gets to both Python and Biopython. I'm trying to split a large .fasta file (with multiple entries) into single files, each with a single entry. I ...
