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
Polls
The Wire
Videos
Our Sponsors
Download
BioinformaticsOnline(BOL) Apps
in your chrome browser.
The Wire
#Header
Wire posts tagged with 'Header'
BioStar
@biostar
Thread
By
BioStar
885 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
2400 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
2414 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
2691 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
2744 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
2792 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
3263 days ago
Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa
#fasta
#header
#sed
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3263 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
3276 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
3352 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