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
#sort
Wire posts tagged with 'sort'
Jit
@jit.aber
Thread
By
Jit
1430 days ago
sort the string which combined with string + numeric using bash script. $ sort -V
#Sort
#sort
#number
#string
Jit
@jit.aber
Thread
By
Jit
1615 days ago
Sort and get the best first of duplicated lines $ sort -k3rn file | sort -u -k1,1
#Sort
#Duplicated
#Value
Hardeep Kaur
@hardeep
Thread
By
Hardeep Kaur
2347 days ago
sort -k2 -n genome.fa
#Sort
#Column2
#Bash
Jit
@jit.aber
Thread
By
Jit
2600 days ago
Sort a file with column 2: sort -g -k 2,2 allPacbio.fa.fai > sorted.fai
#sort
#file
#column
Jit
@jit.aber
Thread
By
Jit
3100 days ago
Check if BAM file is sorted or not use: for F in `find . -name "*.bam"`; do echo $F; samtools index ${F} ; done
#Sort
#BAM
#Trick
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3419 days ago
Sort FASTA sequence by length: cat f1.fasta| awk '{if($0 ~ /^>/){printf "%st", $0}else{print length($0)"t"$0}}'| sort -k2n,2| awk '{print $1"n"$3}' > sequence.fasta
#Sort
#Fasta
#Trick
#Onliner