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
#Replace
Wire posts tagged with 'Replace'
Jit
@jit.aber
Thread
By
Jit
1593 days ago
sed -i 's/2019/2020/g' test.txt test2.txt test3.txt
#Find
#Replace
#sed
Aaryan Lokwani
@aaryan
Thread
By
Aaryan Lokwani
2967 days ago
Sed illegal charters from fasta. $ sed '/^[^>]/ s/[^AGTC]/N/gi' < seq.fa
#fasta
#otherthanATGC
#replace
#sed
#Linux
#illegal
Neel
@neelam
Thread
By
Neel
3285 days ago
Replace space with tab. $ awk -v OFS="\t" '$1=$1' file1
#tab
#space
#replace
#awk
Poonam Mahapatra
@poonam
Thread
2 likes
Priya Singh
@priyasingh
Priya Singh
liked this
3649 days ago
Poonam Mahapatra
@poonam
Poonam Mahapatra
liked this
3649 days ago
By
Poonam Mahapatra
3653 days ago
Replace space with tab: perl -lpe 's/\s/\t/g' < trf_file.dat > outfile.txt
#TRF
#Tab
#Space
#Replace
#Perl
#PerlTrick
#PerlOneliner
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3986 days ago
Search and replace the string 'this' with the string 'that' in the file filename. perl -p -i -e 's/this/that/g' filename
#Perl
#Trick
#PerlOneLiner
#Tipsoftheday
#Replace
#FindandReplace
Jitendra Narayan
@admin
Thread
By
Jitendra Narayan
4355 days ago
replace a word in all files in a directory: grep -lr --exclude-dir=".git" -e "oldword" . | xargs sed -i "s/oldword/newword/g"
#Replace
#Word
#Linux
Jit
@jit.aber
Thread
By
Jit
4445 days ago
Remove N from a fasta file. Go to vi editor, type :%s/N\{25,\}//g and press enter.
#Vim
#vi
#N
#Replace
#Fasta