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
1383 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
1567 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
2300 days ago
sort -k2 -n genome.fa
#Sort
#Column2
#Bash
Jit
@jit.aber
Thread
By
Jit
2553 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
3053 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
3372 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