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
#Sed
Wire posts tagged with 'Sed'
Jit
@jit.aber
Thread
By
Jit
1440 days ago
sed -i 's/2019/2020/g' test.txt test2.txt test3.txt
#Find
#Replace
#sed
BioStar
@biostar
Thread
By
BioStar
2023 days ago
Enter newline at the end of the file $ sed -i -e '$a\' file
#NewLine
#Sed
#Line
#New
Aaryan Lokwani
@aaryan
Thread
By
Aaryan Lokwani
2815 days ago
Sed illegal charters from fasta. $ sed '/^[^>]/ s/[^AGTC]/N/gi' < seq.fa
#fasta
#otherthanATGC
#replace
#sed
#Linux
#illegal
Surabhi Chaudhary
@surabhi
Thread
By
Surabhi Chaudhary
3015 days ago
Remove the unwanted characters from Fasta file: sed -e '/^[^>]/s/[^ATGCatgc]/N/g' infile.fa
#sed
#unwanted
#illegal
#remove
#correct
#fasta
#linux
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3153 days ago
Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa
#fasta
#header
#sed
Jit
@jit.aber
Thread
By
Jit
3176 days ago
Remove four beginning characters from each line of the file. $ sed 's/^....//' genbank.txt
#Remove
#Sed
#Text
Jit
@jit.aber
Thread
By
Jit
3184 days ago
Append the string to fasta header. $ sed 's/>.*/&_Bacteria/' foo.in > out.fasta
#Sed
#Fasta
#String
#Append
Jit
@jit.aber
Thread
By
Jit
3203 days ago
Filter
#blank
#lines
from a
#fasta
file using sed. $ sed '/^$/d' finalSample.fa > finalSample_filtered.fa
#Linux
#Filter
#FASTA
#SED
Jit
@jit.aber
Thread
By
Jit
3242 days ago
To clean up a fasta file so only first column of the header is outputted:$ awk '{print $1}' file.fa > output.fa
#Sed
#Clean
#Header
#Fasta
Jit
@jit.aber
Thread
By
Jit
3265 days ago
Add ">" in front of ids. sed -e 's/^/prefix/' file
#Sed
#Add
#>
Jit
@jit.aber
Thread
By
Jit
3281 days ago
#Remove
all line that start with # file: $ sed '/^#/ d' filename
#line
#sed
#linux