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
2144 days ago
Add number in fasta header $ awk '/^>/{$0=$0"_"(++i)}1' infile.fa
#fasta
#header
#add
#number
#count
Neel
@neelam
Thread
By
Neel
2224 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
2752 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
2776 days ago
Add ">" in front of ids. sed -e 's/^/prefix/' file
#Sed
#Add
#>