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
#number
Wire posts tagged with 'number'
Jit
@jit.aber
Thread
By
Jit
1869 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
2632 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
3536 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
3830 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
4246 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
4286 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
4287 days ago
Count the total number of lines in a file. my $total=@{[<INFILE>]};
#Perl
#Count
#Number
#Total
#File