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
3031 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
3033 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
3047 days ago
#Upgrade
the
#perl
in
#Ubuntu
$ sudo cpan cpan[1]> upgrade
Jit
@jit.aber
Thread
By
Jit
3116 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
3175 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
3180 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
3209 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
3217 days ago
To uninstall a perl module $ cpanm --uninstall <Module::Name>
#Perl
#Trick
#Uninstall
#Module
Rahul Nayak
@rahul
Thread
By
Rahul Nayak
3361 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
3361 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
3363 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
3417 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
3423 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
3430 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
3430 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 »