BOL
Log in
Username or email
Password
Remember me
Register
Lost password
Activity
News
Opportunity
ResearchLabs
Questions
Pages
Discussion
More
BioScripts
Blogs
Bookmarks
Files
Fun
Groups
Polls
The Wire
Tryst
Videos
Our Sponsors
Download
BioinformaticsOnline(BOL) Apps
in your chrome browser.
The Wire
#header
Wire posts tagged with 'header'
BioStar
@biostar
Thread
By
BioStar
285 days ago
Delete all the headers from multifasta file $ awk 'BEGIN {print ">"ARGV[1]};!/^>/{print}' test.fa
#fasta
#delete
#header
#multifasta
Neel
@neelam
Thread
By
Neel
1800 days ago
Perl onliner to add string to each of the fasta header. $ perl -p -e 's/^(>.*)$/$1-origin/g' in.fasta > out.fasta
#String
#Header
#Fasta
Neel
@neelam
Thread
By
Neel
1814 days ago
#Rename
the
#fasta
#header
and
#keep
first $ perl -ne 'if (/^(>\S+)/){print "$1\n";}else{print $_;}' realTestDATA.fa > realTestDATA_headerCorrected.fa
#Perl
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2091 days ago
One liner to remove the description information from a fasta file and just keep the identifier $ perl -p -i -e 's/>(.+?) .+/>$1/g' sample1.fa
#clean
#header
#fasta
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2144 days ago
Add number in fasta header $ awk '/^>/{$0=$0"_"(++i)}1' infile.fa
#fasta
#header
#add
#number
#count
Jit
@jit.aber
Thread
By
Jit
2192 days ago
Rename the fasta header perl -ane 'if(/\>/){$a++;print ">LR$a\n"}else{print;}' allPacBio_clean.fa > allPacBio_clean_shortName.fa
#fasta
#header
#rename
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2663 days ago
Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa
#fasta
#header
#sed
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2663 days ago
Remove unwanted character from fasta file. sed -e '/^[^>]/s/[^ATGCatgc]/N/g' file.fa
#fasta
#file
#header
#charater
Jit
@jit.aber
Thread
By
Jit
2676 days ago
Remove the unnecessary
#fasta
#header
. $ sed 's/\s.*$//' Adineta_vaga_v2.0.scaffolds.fa > new_file.fasta
Jit
@jit.aber
Thread
By
Jit
2752 days ago
To clean up a fasta file so only first column of the header is outputted:$ awk '{print $1}' file.fa > output.fa
#Sed
#Clean
#Header
#Fasta