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
#Fasta
Wire posts tagged with 'Fasta'
Radha Agarkar
@radhaagarkar
Thread
By
Radha Agarkar
2706 days ago
Remove the fasta with zero size: awk 'BEGIN {RS = ">" ; FS = "\n" ; ORS = ""} $2 {print ">"$0}' input.fas > output.fas
#fasta
#remove
Jit
@jit.aber
Thread
By
Jit
2717 days ago
Fastq 2 fasta. $ sed -n '1~4s/^@/>/p;2~4p' test.fastq > test.fasta
#fastq
#fasta
#convert
Neel
@neelam
Thread
By
Neel
2830 days ago
Reformat you fasta sequence with size. $ seqkit seq -w 50 allGenomeContacted.fa > allGenomeContacted_final.fa
#Reformat
#Fasta
#Size
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2844 days ago
Remove "|" from fasta header. $ sed 's,|,_,g' -i file.fa
#fasta
#header
#sed
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2844 days ago
Remove unwanted character from fasta file. sed -e '/^[^>]/s/[^ATGCatgc]/N/g' file.fa
#fasta
#file
#header
#charater
Jit
@jit.aber
Thread
By
Jit
2857 days ago
Remove the unnecessary
#fasta
#header
. $ sed 's/\s.*$//' Adineta_vaga_v2.0.scaffolds.fa > new_file.fasta
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
2870 days ago
Count the number of bases in fasta file. grep -v ">" file.fasta | wc | awk '{print $3-$1}'
#Fasta
#Count
#Bases
Jit
@jit.aber
Thread
By
Jit
2875 days ago
Append the string to fasta header. $ sed 's/>.*/&_Bacteria/' foo.in > out.fasta
#Sed
#Fasta
#String
#Append
Jit
@jit.aber
Thread
By
Jit
2894 days ago
Filter
#blank
#lines
from a
#fasta
file using sed. $ sed '/^$/d' finalSample.fa > finalSample_filtered.fa
#Linux
#Filter
#FASTA
#SED
Abhimanyu Singh
@abhimanyu
Thread
By
Abhimanyu Singh
2913 days ago
fastq to fasta convertor $ sed -n '1~4s/^@/>/p;2~4p' test.fastq > test.fasta
#Convert
#Fasta
#Fastq
#fa
#fq
Jit
@jit.aber
Thread
By
Jit
2933 days ago
To clean up a fasta file so only first column of the header is outputted:$ awk '{print $1}' file.fa > output.fa
#Sed
#Clean
#Header
#Fasta
Jit
@jit.aber
Thread
By
Jit
2933 days ago
To add something to end of all header lines: $ sed 's/>.*/&WHATEVERYOUWANT/' file.fa > outfile.fa
#Add
#Fasta
Jit
@jit.aber
Thread
By
Jit
2977 days ago
Get the fasta sequence of the coordinates
http:/
/
bedtools.readthedocs.io/
en/
latest/
content/
tools/
getfasta.html
#Fasta
#Bed
#Coordinates
#Bedtools
Shruti Paniwala
@shruti
Thread
By
Shruti Paniwala
3110 days ago
Extract a fasta sequence from multifasta file: samtools faidx multitest.fa and then samtools faidx multitest.fa fasta_id > out.fa
#Samtools
#Fasta
#Extract
#Multifasta
Radha Agarkar
@radhaagarkar
Thread
By
Radha Agarkar
3150 days ago
Extract fasta sequence by Ids: perl -ne 'if(/^>(\S+)/){$c=grep{/^$1$/}qw(id1 id2)}print if $c' fasta.file
#Perl
#PerlOneliner
#PerlTrick
#Extract
#Ids
#Fasta
« Previous
1
2
3
4
Next »