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
#add
Wire posts tagged with 'add'
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2146 days ago
Add number in fasta header $ awk '/^>/{$0=$0"_"(++i)}1' infile.fa
#fasta
#header
#add
#number
#count
Neel
@neelam
Thread
By
Neel
2226 days ago
Add some text at the beginning of the file $ echo -e "chrII_reverse\n$(cat chrII_reverse.fa )" > chrII_reverse.fa
#Add
#FirstLine
#Text
Jit
@jit.aber
Thread
By
Jit
2754 days ago
To add something to end of all header lines: $ sed 's/>.*/&WHATEVERYOUWANT/' file.fa > outfile.fa
#Add
#Fasta
Jit
@jit.aber
Thread
By
Jit
2778 days ago
Add ">" in front of ids. sed -e 's/^/prefix/' file
#Sed
#Add
#>