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
#delete
Wire posts tagged with 'delete'
BioStar
@biostar
Thread
By
BioStar
946 days ago
Delete all the headers from multifasta file $ awk 'BEGIN {print ">"ARGV[1]};!/^>/{print}' test.fa
#fasta
#delete
#header
#multifasta
BioStar
@biostar
Thread
By
BioStar
2052 days ago
Delete all the executables in current directory. $ find . -maxdepth 1 -type f -executable -exec rm {} +
#Delete
#CurrrentDir
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2811 days ago
sudo find /tmp -type f -atime +10 -delete
#Delete
all tmp files created within 10 days
#Linux
Manisha Mishra
@manisha
Thread
By
Manisha Mishra
3051 days ago
Remove the sequence by fasta ids. awk 'BEGIN{while((getline<"ids.txt")>0)l[">"$1]=1}/^>/{f=!l[$1]}f' seq.fa
#Remove
#Delete
#ids
#fasta
Jit
@jit.aber
Thread
By
Jit
3640 days ago
Find a file with certain size and delete them: $ find . -name "see-D-d-ALN_*" -size -10k -delete
#Delete
#Size
#Linux
#Tricks
Archana Malhotra
@archana
Thread
By
Archana Malhotra
3820 days ago
#Delete
all files (*.bak) in a
#folder
with find . -type f -name "*.bak" -exec rm -f {} \;
Jit
@jit.aber
Thread
By
Jit
4463 days ago
Remove the blank space from a fasta file. perl -nlwe 'tr/ //d; print if length' fileName
#Delete
#Space
#Fasta
#Perl
#Oneliner