![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Extract sequence from multi fasta file with PERL | andreitudor | Bioinformatics | 27 | 07-07-2019 08:45 AM |
Extract multiple fasta sequences from a fasta file based on sequenes | entomology | Bioinformatics | 38 | 12-19-2015 07:28 PM |
How to Extract Multiple Sequence from Multi Fasta File by ID list | Anti | Bioinformatics | 4 | 02-02-2015 05:02 AM |
Extract partial sequence from FASTA record | cdlam | Bioinformatics | 9 | 10-30-2012 03:21 PM |
Extract only sequence ids from fasta file with makeblastdb | angeloulivieri | Bioinformatics | 13 | 07-30-2012 03:41 AM |
![]() |
|
Thread Tools |
![]() |
#1 |
Member
Location: US Join Date: Apr 2010
Posts: 63
|
![]()
I have a fasta file with many sequences, an I would like to get just the longest one (does not matter the id). How can I do that?
I would like to have as output a fasta file with only the longest sequence. thanks! |
![]() |
![]() |
![]() |
#2 |
Super Moderator
Location: Walnut Creek, CA Join Date: Jan 2014
Posts: 2,707
|
![]()
You can make a read length histogram with BBMap's readlength.sh (or reformat.sh lhist), then run:
Code:
reformat.sh in=file.fa out=longest.fa minlength=X |
![]() |
![]() |
![]() |
#3 |
Senior Member
Location: Purdue University, West Lafayette, Indiana Join Date: Aug 2008
Posts: 2,317
|
![]()
Must. Not. Write. Perl. One. Liner.
-- Phillip |
![]() |
![]() |
![]() |
#4 |
Senior Member
Location: USA, Midwest Join Date: May 2008
Posts: 1,178
|
![]() |
![]() |
![]() |
![]() |
#5 | |
Super Moderator
Location: Walnut Creek, CA Join Date: Jan 2014
Posts: 2,707
|
![]()
Go right ahead
![]() Quote:
|
|
![]() |
![]() |
![]() |
#6 |
Junior Member
Location: USA Join Date: Sep 2017
Posts: 5
|
![]()
This sort of task is nearly trivial in Python, it is well worth your while to learn it and the important packages such as BioPython which make jokes like seen in this thread all the more funny.
So here is a quick and dirty way. A little thought could make it more elegant and/or generalizable. This would just parse through your multifasta file and spit back the longest sequence. Code:
from Bio import SeqIO myList = [] for seq_record in SeqIO.parse("test.fa", "fasta"): myList.append([seq_record.id, str(seq_record.seq), len(seq_record)]) myList.sort(key=lambda x: x[2]) print("the longest sequence is:") print(">", myList[-1][0], sep='') print(myList[-1][1]) |
![]() |
![]() |
![]() |
#7 |
Member
Location: US Join Date: Apr 2010
Posts: 63
|
![]()
Thanks for the suggestions.
I have a list of protein ids, and I need to retrieve the respective nucleotide sequence. I am using eutils to retrieve them based on these ids, but for some ids, I have many sequences for one id. So for this specific case, I am selecting the longest sequence. |
![]() |
![]() |
![]() |
#8 |
Senior Member
Location: bethesda Join Date: Feb 2009
Posts: 700
|
![]()
/*
how to compile: gcc -Wall -O2 -o longestseq longestseq.c example: ./longestseq example.fa */ #include <stdlib.h> #include <string.h> #include <stdio.h> char s[100000]; // input buffer int main(int argc, char *argv[]) { FILE *fp; int i; size_t cur_spot; size_t last_spot; size_t best_spot; size_t cursize; size_t bestsofarsize; if (argc != 2) { fprintf(stderr,"Error: need inputfilefasta. This program finds first longest fasta sequence(just one, no same length "ties"). Usage: ./longestseq example.fa\n"); exit(0); } fp = fopen(argv[1],"r"); best_spot = cur_spot = last_spot = ftell(fp); cursize = bestsofarsize = 0; while (fgets(s,99999,fp)) { for (i=0;s[i];i++) { if ((s[i]=='\r')||(s[i]=='\n')) {s[i] = (char)0;break;}} //handle dos or unix if (s[0]=='>') { last_spot = cur_spot; cursize = 0; continue; } cursize += strlen(s); if (cursize > bestsofarsize) { bestsofarsize = cursize; best_spot = last_spot; } cur_spot = ftell(fp); } fseek(fp,best_spot,SEEK_SET); fgets(s,99999,fp); printf("%s",s); while (fgets(s,99999,fp)) { if (s[0] == '>') break; printf("%s",s); } fclose(fp); return 0; } [FONT="Courier New"][SIZE="1"]____ |
![]() |
![]() |
![]() |
Tags |
fasta, fasta file |
Thread Tools | |
|
|