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
#replace
Wire posts tagged with 'replace'
Jit
@jit.aber
Thread
By
Jit
951 days ago
sed -i 's/2019/2020/g' test.txt test2.txt test3.txt
#Find
#Replace
#sed
Aaryan Lokwani
@aaryan
Thread
By
Aaryan Lokwani
2325 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
2643 days ago
Replace space with tab. $ awk -v OFS="\t" '$1=$1' file1
#tab
#space
#replace
#awk
Poonam Mahapatra
@poonam
Thread
By
Poonam Mahapatra
3011 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
3344 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
3713 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
3803 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