![]() |
|
![]() |
||||
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 only sequence ids from fasta file with makeblastdb | angeloulivieri | Bioinformatics | 13 | 07-30-2012 03:41 AM |
extract subsequence from genomic fasta file | jwhite | Bioinformatics | 7 | 06-28-2012 12:15 PM |
PubMed: Statistical Analyses of Next Generation Sequence Data: A Partial Overview. | Newsbot! | Literature Watch | 0 | 11-30-2010 09:20 AM |
In Sequence: Illumina Ships ‘Record’ GAs In Q3; Says Longer Reads Will Spur De Novo S | Newsbot! | Illumina/Solexa | 0 | 10-28-2008 02:17 PM |
![]() |
|
Thread Tools |
![]() |
#1 |
Junior Member
Location: East Coast Join Date: Oct 2012
Posts: 7
|
![]()
Hi all,
So I'm fairly new to anything bioinformatics related and I've been kind of muddling my way through so far. I have extracted the introns from three different species and have their sequences stored in three FASTA files. I need a way to extract the first 10 bases from each of these sequences and put them in a new file. I don't know if it helps or not, but the first 10 bases are in caps while the rest of the sequence is in lowercase. I'm not sure if I could use some sort of regex hereor something. So for example, >Fasta format Identification stuff ACTTGTACATatgggtatcataatcagggagatcc >Fasta format Identification stuff ACTTGTACATatgggtatcataatcagggagatcc >Fasta format Identification stuff ACTTGTACATatgggtatcataatcagggagatcc Ideally I could preserve the ID lines with the extracted 10 base sequences. I have been using UNIX and perl for some of this (doing the actual extractions), but I also have access to Windows with python, biopython, and Emboss. Thanks for any help you guys could give! |
![]() |
![]() |
![]() |
#2 |
Member
Location: Africa Join Date: Apr 2011
Posts: 62
|
![]()
Hello cdlam,
Assuming your sequences are in a file name file.fa. At the command prompt run this perl -e 'while($id = <>){$seq = <>; $seq = substr($seq,0,10); print $id.$seq."\n"}' file.fa you should get this: >Fasta format Identification stuff ACTTGTACAT >Fasta format Identification stuff ACTTGTACAT >Fasta format Identification stuff ACTTGTACAT Enjoy! ![]() MBandi |
![]() |
![]() |
![]() |
#3 |
Senior Member
Location: Boston Join Date: Nov 2009
Posts: 224
|
![]()
awk solution:
awk '{if (/^>/) print $0 else print(substr($1,1,10)) }' file.fasta |
![]() |
![]() |
![]() |
#4 |
Junior Member
Location: East Coast Join Date: Oct 2012
Posts: 7
|
![]()
Thanks for the replies. I'm not exactly sure how to do the awk solution,is that run from the command prompt?
Apexy, that seems to have worked. However, unforseen problem....one of my files is "file.fasta" but apparently isn't in the format... It's like: scaffold_8 2234626-2234945 (-) GATCCGTAAGgtgaccacttccagcggcctggtgaagcgcctgatcgaggtgcagacgacgaccgtgacgaagaccgtggcgggcgagacgagcacgactgtggagacggagactcgcgaggagatcgatgacagcagtgccacgagctcgaccacgacgacgtcggatgcgactctggttagctcgtcgacgacgcacgagacggacgaggacggcgctgctggcgcgacggtgaagaccgaggtgttccgtacgatgggtgccaacggcagcgtcatcaccaagacggttcgcacgacgatccgtaagGTGACCACTT asmbl_6481 Except it's just in one line when I open it: scaffold_8 2234626-2234945 (-) GATCCGTAAG......... It does do multiple lines per entry, but the breaks seem unpredictable, it's weird. I don't suppose anyone has any ideas for getting this into the proper format? |
![]() |
![]() |
![]() |
#5 |
Senior Member
Location: Boston Join Date: Nov 2009
Posts: 224
|
![]()
cdlam, the awk script should be run from the command line.
Is the format of the weird fasta file consistent? Does the sequence name always start with "scaffold"? Do the sequences always start with capitol letters? |
![]() |
![]() |
![]() |
#6 |
Junior Member
Location: East Coast Join Date: Oct 2012
Posts: 7
|
![]()
Hey,
Yes, it seems consistent. The beginning of each on is "scaffold_8 2234626-2234945 (-) " either with a (+) or (-) depending on what strand it came from. So it will always go ( ) GTGAA....and each line ends with "asmbl_####" So, scaffold_# ###-##### ( ) SEQUENCE-DATA assembl_### It starts a new line for a new "scaffold_#...." and the "assembl_###" is just on the end of the last line with sequence data. Edit: Sorry, yes there are always 10 capitol letters at the beginning and 10 capitol letters at the end of the sequence. |
![]() |
![]() |
![]() |
#7 | |
Senior Member
Location: Boston Join Date: Nov 2009
Posts: 224
|
![]() Quote:
Code:
scaffold_8 2234626-2234945 (-) GATCCGTAAGgtgaccacttccagcggcctggtgaagcgcctgatcgaggtgcagacgacgaccgtgacgaagaccgtggcgggcgagacgagcacgactgtggagacggagactcgcgaggagatcgatgacagcagtgccacgagctcgaccacgacgacgtcggatgcgactctggttagctcgtcgacgacgcacgagacggacgaggacggcgctgctggcgcgacggtgaagaccgaggtgttccgtacgatgggtgccaacggcagcgtcatcaccaagacggttcgcacgacgatccgtaagGTGACCACTT asmbl_6481 Code:
sed 's/^/>/g' input | sed 's/(*)\s/&\n/g' | sed 's/ as.*$//g' | sed 's/\s/ /g' > output 's/^/>/g' adds a > to each line. 's/(*)\s/&\n/g' inserts a new line after the strand designation. 's/ as.*$//g' removes the assembl_### portion. You could just move it instead if you want to keep it. 's/\s/ /g' replaces white space with a space. I added this since it seemed like some of the fields in the name line might have been separated by a tab. End with: Code:
>scaffold_8 2234626-2234945 (-) GATCCGTAAGgtgaccacttccagcggcctggtgaagcgcctgatcgaggtgcagacgacgaccgtgacgaagaccgtggcgggcgagacgagcacgactgtggagacggagactcgcgaggagatcgatgacagcagtgccacgagctcgaccacgacgacgtcggatgcgactctggttagctcgtcgacgacgcacgagacggacgaggacggcgctgctggcgcgacggtgaagaccgaggtgttccgtacgatgggtgccaacggcagcgtcatcaccaagacggttcgcacgacgatccgtaagGTGACCACTT |
|
![]() |
![]() |
![]() |
#8 | |
Junior Member
Location: East Coast Join Date: Oct 2012
Posts: 7
|
![]()
That worked, thanks a lot!
Hmm in terms of my original question, when using the Quote:
|
|
![]() |
![]() |
![]() |
#9 |
Member
Location: Africa Join Date: Apr 2011
Posts: 62
|
![]()
I would suggest pragmatism. first extract last 25 and put in a file. From this file extract first 20
OR perl -e 'while($id = <>){$seq = <>; $seq = substr($seq,-26, 20); print $id.$seq."\n"}' file.fa |
![]() |
![]() |
![]() |
#10 |
Junior Member
Location: East Coast Join Date: Oct 2012
Posts: 7
|
![]()
Haha, wow I really feel like I should have been able to think of that myself
![]() Oh well. Thanks a lot! |
![]() |
![]() |
![]() |
Thread Tools | |
|
|