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
#lines
Wire posts tagged with 'lines'
Jit
@jit.aber
Thread
By
Jit
2641 days ago
Remove duplicated lines from text file. $ awk '!seen[$0]++' allIds
#duplicate
#lines
#remove
#awk
Jit
@jit.aber
Thread
By
Jit
2713 days ago
Filter
#blank
#lines
from a
#fasta
file using sed. $ sed '/^$/d' finalSample.fa > finalSample_filtered.fa
#Linux
#Filter
#FASTA
#SED
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2902 days ago
Extract ten lines below matched string with grep: grep -A 10 "string" filename1 ; -B for above and -C for both
#grep
#Linux
#Tricks
#Lines
#Matches