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
#remove
Wire posts tagged with 'remove'
Jit
@jit.aber
Thread
By
Jit
2283 days ago
Remove conda environment completely $ conda env remove -n env_name
#Remove
#Conda
#Environment
BioStar
@biostar
Thread
By
BioStar
2894 days ago
Remove empty line from fasta. $ sed -i '/^$/d' standard_output.final.scaffolds_online.fasta
#Empty
#Fasta
#Remove
Jit
@jit.aber
Thread
By
Jit
2945 days ago
#Remove
#smartbell
from
#pacbio
#removesmartbell
.sh
https:/
/
github.com/
BioInfoTools/
BBMap/
blob/
master/
sh/
removesmartbell.sh
Jit
@jit.aber
Thread
By
Jit
2984 days ago
perl -pe 's/[^AGTC\n]/N/gi unless m/>/;' /media/urbe/TOSHIBALAB/falconUnzip/SSPACED_P2/scaffolds.fasta > /media/urbe/TOSHIBALAB/falconUnzip/SSPACED_P2/scaffolds_corrected.fasta
#Remove
#Non
-ATCG
Manisha Mishra
@manisha
Thread
By
Manisha Mishra
3051 days ago
Remove the sequence by fasta ids. awk 'BEGIN{while((getline<"ids.txt")>0)l[">"$1]=1}/^>/{f=!l[$1]}f' seq.fa
#Remove
#Delete
#ids
#fasta
Jit
@jit.aber
Thread
By
Jit
3176 days ago
#Remove
a
#sequence
by id from multifasta: cat vaga.fa | awk '{if (substr($0,1) == ">scaffold_1 1087316 bp") censor=1; else if (substr($0,1,1) == ">") censor=0; if (censor==0) print $0}' > fixed.fasta
Jit
@jit.aber
Thread
By
Jit
3176 days ago
awk 'BEGIN {RS = ">" ; FS = "\n" ; ORS = ""} {if ($2) print ">"$0}' all_p_ctg.fa > all_p_ctg_CORRECTED.fa
#remove
#empty
#clean
#fasta
Surabhi Chaudhary
@surabhi
Thread
By
Surabhi Chaudhary
3186 days ago
Remove the unwanted characters from Fasta file: sed -e '/^[^>]/s/[^ATGCatgc]/N/g' infile.fa
#sed
#unwanted
#illegal
#remove
#correct
#fasta
#linux
Radha Agarkar
@radhaagarkar
Thread
By
Radha Agarkar
3186 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
3302 days ago
Remove duplicated lines from text file. $ awk '!seen[$0]++' allIds
#duplicate
#lines
#remove
#awk
Jit
@jit.aber
Thread
By
Jit
3312 days ago
Remove unwanted character from fasta file. $ sed -e '/^[^>]/s/[^ATGCatgc]/N/g' file.fa
#IUPAC
#Special
#Character
#Remove
Jit
@jit.aber
Thread
By
Jit
3347 days ago
Remove four beginning characters from each line of the file. $ sed 's/^....//' genbank.txt
#Remove
#Sed
#Text
Jit
@jit.aber
Thread
By
Jit
3451 days ago
#Remove
all line that start with # file: $ sed '/^#/ d' filename
#line
#sed
#linux
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
4002 days ago
Remove the fasta description and just keep the identifier. perl -p -i -e 's/>(.+?) .+/>$1/g' sample1.fa
#Perl
#Oneliner
#Trick
#Tips
#Fasta
#Identifier
#Remove
Jit
@jit.aber
Thread
By
Jit
4393 days ago
The syntax to remove last character from line or word is as follows: x="foo bar" echo "${x%?}"
#Remove
#Last
#Bash
#Linux