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
#Number
Wire posts tagged with 'Number'
Jit
@jit.aber
Thread
By
Jit
1433 days ago
sort the string which combined with string + numeric using bash script. $ sort -V
#Sort
#sort
#number
#string
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2196 days ago
Add number in fasta header $ awk '/^>/{$0=$0"_"(++i)}1' infile.fa
#fasta
#header
#add
#number
#count
Poonam Mahapatra
@poonam
Thread
By
Poonam Mahapatra
3100 days ago
#Extract
#Chromosome
#Number
And Start Position
#Reads
: samtools view bamfile.bam|awk '{print $3 "\t" $4 "\t" $4+length($10)-1}' > newfile.tab
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3394 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
3810 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
3850 days ago
Count the number of "pattern" occurrence in a file grep -o 'pattern' anc.annots.gff | wc -l
#Linux
#grep
#Count
#Number
#Occurrence
Jit
@jit.aber
Thread
By
Jit
3851 days ago
Count the total number of lines in a file. my $total=@{[<INFILE>]};
#Perl
#Count
#Number
#Total
#File