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
#Single
Wire posts tagged with 'Single'
BioStar
@biostar
Thread
By
BioStar
278 days ago
#Multi
-line fasta to
#Single
-line Fasta $ awk '/^>/ {if (NR>1) print ""; printf("%s\n", $0); next; } { printf("%s", $0) } END { printf("\n"); }' multi_line.fasta > single_line.fasta
Rahul Agarwal
@raag
Thread
By
Rahul Agarwal
1740 days ago
https:/
/
github.com/
AllonKleinLab/
scrublet
#Doublet
#removal
#single
#cell
Rahul Agarwal
@raag
Thread
By
Rahul Agarwal
1740 days ago
https:/
/
panglaodb.se/
index.html
#Single
#Cell
#database
Rahul Agarwal
@raag
Thread
By
Rahul Agarwal
1740 days ago
https:/
/
www.cartana.se/
#Brain
#Single
#cell
#sequencing
LEGE
@lege
Thread
By
LEGE
1806 days ago
Multiline to singleline covert. $ awk '/^>/ {printf("%s%s\t",(N>0?"\n":""),$0);N++;next;} {printf("%s",$0);} END {printf("\n");}' < input.fa
#Multi
#Single
#Convert
#awk
Neel
@neelam
Thread
By
Neel
2226 days ago
Multifasta to singleline fasta. $ awk '/^>/ {printf("\n%s\n",$0);next; } { printf("%s",$0);} END {printf("\n");}' < file.fa
#Multi
#Single
#Fasta
#Convert