X
Alternative content
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
#Grep
Wire posts tagged with 'Grep'
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
1829 days ago
Grep a term from a file in Linux. $ grep -A1 "term" input.fasta > output.fasta
#Grep
#Term
Jit
@jit.aber
Thread
By
Jit
2580 days ago
Linux command to find the file contains a string "LOCK_EX": grep -Ril "LOCK_EX" /
#Root
#Find
#Linux
#Grep
#search
Abhimanyu Singh
@abhimanyu
Thread
By
Abhimanyu Singh
2790 days ago
Show before(B) and after(A) the matching region $ grep -B 3 -A 2 foo README.txt
#Linux
#Tricks
#View
#Grep
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2869 days ago
Extract values : cat seeALN.xls | grep -w "scaffold_1" to
#grep
#exact
#matching
words from file seeALN.xls
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
2952 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
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
3112 days ago
Grep all the processor in Linux system $ grep "^processor" /proc/cpuinfo | tail -n 1 | awk '{print $3}'
#Grep
#OS
#Linux
#Processor
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3391 days ago
Count the number of sequences in fastaq file. grep -c '^@' sample1.fq
#Fastaq
#Count
#Number
#Grep
#Dirty
#Oneliner
#NGS
Jit
@jit.aber
Thread
By
Jit
3807 days ago
To count number of fasta entries, I use: grep -c '^>' mySequences.fasta
#Perl
#Count
#Number
#Fasta
#Linux
#Grep
Jit
@jit.aber
Thread
By
Jit
3847 days ago
Count the number of "pattern" occurrence in a file grep -o 'pattern' anc.annots.gff | wc -l
#Linux
#grep
#Count
#Number
#Occurrence