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
#Size
Wire posts tagged with 'Size'
LEGE
@lege
Thread
By
LEGE
2485 days ago
#Estimate
the
#insert
#size
with mapped reads $ head -10000 mappings.sam | awk '{ if ($9 > 0) { N+=1; S+=$9; S2+=$9*$9 }} END { M=S/N; print "n="N", mean="M", stdev="sqrt ((S2-M*M*N)/(N-1))}'
Neel
@neelam
Thread
By
Neel
2524 days ago
List all files by size in Linux $ ls -l -S | sort -k 5 -n
#Linux
#Size
#List
BioStar
@biostar
Thread
By
BioStar
2891 days ago
Check the file systems and sizes. $ df --block-size=G
#Linux
#Size
#df
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2961 days ago
du -sh * | sort | grep "G"
#List
size of all the directory
#Size
#List
#Directory
#Linux
Aaryan Lokwani
@aaryan
Thread
By
Aaryan Lokwani
3006 days ago
Count the contigs length in index fasta file with samtools. $ awk '{s+=$2}END{print s}' scaffolds.fasta.fai
#Fasta
#Index
#Length
#Count
#Size
#Samtools
Jit
@jit.aber
Thread
By
Jit
3132 days ago
Estimate the genome size
https:/
/
bioinformatics.uconn.edu/
genome-size-estimation-tutorial/
#Genome
#Size
#Estimate
Neel
@neelam
Thread
By
Neel
3330 days ago
Reformat you fasta sequence with size. $ seqkit seq -w 50 allGenomeContacted.fa > allGenomeContacted_final.fa
#Reformat
#Fasta
#Size
Jit
@jit.aber
Thread
By
Jit
3353 days ago
#Filter
out
#reads
with
#size
to discard reads containing many Ns. BBNorm (
https:/
/
sourceforge.net/
projects/
bbmap/
)
Jit
@jit.aber
Thread
By
Jit
3357 days ago
Split the file in Linux with size. $ split --bytes=50M aaaa.fa
#split
#linux
#size
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3363 days ago
To know the size of the directory in current folder. $ du -sh *
#Size
#Directory
#List
#Space
#Linux
#du
Jit
@jit.aber
Thread
By
Jit
3661 days ago
Find a file with certain size and delete them: $ find . -name "see-D-d-ALN_*" -size -10k -delete
#Delete
#Size
#Linux
#Tricks
Jit
@jit.aber
Thread
By
Jit
3675 days ago
du -sh * will give you the size of all the directories,files etc in current directory in human readable format.
#Linux
#Size
#Tricks
#Folders
#Files