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
#Perl
Wire posts tagged with 'Perl'
Poonam Mahapatra
@poonam
Thread
By
Poonam Mahapatra
3061 days ago
Replace space with tab: perl -lpe 's/\s/\t/g' < trf_file.dat > outfile.txt
#TRF
#Tab
#Space
#Replace
#Perl
#PerlTrick
#PerlOneliner
Jit
@jit.aber
Thread
By
Jit
3063 days ago
Remove tab with comma in file: perl -lpe 's/\t/,/g' < flattened_line_0.fa.data > output.csv
#PerlTrick
#PerlO
,liner
#Perl
#Tab
#Comma
Neel
@neelam
Thread
By
Neel
3077 days ago
#Upgrade
the
#perl
in
#Ubuntu
$ sudo cpan cpan[1]> upgrade
Jit
@jit.aber
Thread
By
Jit
3147 days ago
Perl Scripts for Science and Engineering
http:/
/
www.lwebzem.com/
cgi-bin/
se_res/
scripts.cgi
#Perl
#Script
#Science
Jit
@jit.aber
Thread
By
Jit
3205 days ago
Print all text after a matching string perl -ne "print unless 1 .. m(String)"
#Perl
#OneLiner
#String
#Perl
#Trick
Neel
@neelam
Thread
By
Neel
3210 days ago
Delete space from FASTA header: perl -pe 's/>\S+\K.+//' < file.fasta > new_file.fasta
#PerlOneLiner
#Trick
#Perl
#Space
#Fasta
Jit
@jit.aber
Thread
By
Jit
3239 days ago
Print all the values between 15 to 17. perl -ne 'print if 15 .. 17' file
#Perl
#PerlTrick
#Range
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3247 days ago
To uninstall a perl module $ cpanm --uninstall <Module::Name>
#Perl
#Trick
#Uninstall
#Module
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3391 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
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3391 days ago
Extract sequences by their ID from a fasta file. perl -ne 'if(/^>(\S+)/){$c=$i{$1}}$c?print:chomp;$i{$_}=1 if
@ARGV
' ids.txt sample1.fa
#Extract
#Sequences
#IDs
#Fasta
#Perl
#Trick
#Oneliner
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3394 days ago
Search and replace the string 'this' with the string 'that' in the file filename. perl -p -i -e 's/this/that/g' filename
#Perl
#Trick
#PerlOneLiner
#Tipsoftheday
#Replace
#FindandReplace
Jit
@jit.aber
Thread
By
Jit
3447 days ago
Besides, I wasn't trying to help them understand. I was only trying to help them think they understand. --
#Larry
Wall
#Perl
#Quotes
Jitendra Narayan
@admin
Thread
By
Jitendra Narayan
3453 days ago
Print all possible 2 combination of words ( ATGC): $letter = join',','A','T','G','C';
@abc
=glob "{$letter}{$letter}"; foreach (
@abc
) { print "$_\n"; }
#Perl
#PerlTrick
#TipsOftheDay
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3460 days ago
Perl Elements to Avoid
http:/
/
perl-begin.org/
tutorials/
bad-elements/
#Perl
#Tricks
#Avoid
#Learn
#Beginners
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3460 days ago
Fancy One-Liner
http:/
/
userweb.eng.gla.ac.uk/
umer.ijaz/
bioinformatics/
oneliners.html
#Perl
#OneLiner
#Bioinformatics
#Quick
#Common
#Tricks
#CommandLine
#Terminal
« Previous
1
2
3
4
5
6
7
Next »