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
#Append
Wire posts tagged with 'Append'
Jit
@jit.aber
Thread
By
Jit
2413 days ago
Append something on filename. find -name "*H_*.scf" -exec rename 's/H_//' {} ";"
#Append
#Filename
#find
Jit
@jit.aber
Thread
By
Jit
2413 days ago
Append to the file name. $ for filename in *.scf; do mv "$filename" "H_$filename"; done;
#append
#mv
#rename
Jit
@jit.aber
Thread
By
Jit
2694 days ago
Append the string to fasta header. $ sed 's/>.*/&_Bacteria/' foo.in > out.fasta
#Sed
#Fasta
#String
#Append