Results for "Perl"

Tags

  • Perl one-liner for bioinformatician !!!

    With the emergence of NGS technologies, and sequencing data most of the bioinformaticians mung and wrangle around massive amounts of genomics text. There are several "standardized" file formats (FASTQ, SAM, VCF, etc.) and some tools for manipulating them (fastx toolkit, samtools, vcftools, etc.),...

    Tags: Bioinformatics, Computational Biology, Perl, NGS, Genome, Hacking, One-liner, Oneliner

    3639 days ago

  • Rosalind Problem Solution with Perl

    Rosalind is a platform for learning bioinformatics and programming through problem solving. Take a tour to get the hang of how Rosalind works. Bioinformatics Textbook Track Find more about Rosalind puzzle at http://rosalind.info/problems/list-view/?location=bioinformatics-textbook-track I will...

    Tags: Bioinformatics, Computational Biology, Education, Solution, Puzzle, Study, Script, Perl, Frequest, Words, Rosalind

    3263 days ago

  • Bioinformatics Web Application Development with Perl

    Perl's second wave of adoption came from the growth of the world wide web. Dynamic web pages—the precursor to modern web applications—were easy to create with Perl and CGI. Thanks to Perl's ubiquity as a language for system administrators and its power to manipulate text, it was the...

    Tags: Bioinformatics, Web, Application, Development, Modern, Perl

    2333 days ago

  • Installing Bio::SCF perl module

    Most Perl modules are written in Perl, some use XS (they are written in C) so require a C compiler (it's easy to get this setup - don't panic), see your OS of choice below to find out how to get the right compiler. Modules may have dependencies on other modules (almost al...

    Tags: Perl, SCF, Bio::SCF, Install, Module, Bio-Lib, autoConTAMPR

    2229 days ago

  • LINKS scaffolder bloomfilter setting !

    ➜ bin git:(master) ✗ ls -l total 68 drwxrwxr-x 3 urbe urbe 4096 Jun 15 12:15 lib -rwxrwxrwx 1 urbe urbe 65141 Jun 15 17:13 LINKS ➜ bin git:(master) ✗ pwd /home/urbe/Tools/LINKS_1.8.6/bin ➜ bloomfilter git:(master) ✗ swig -Wall -c++ -perl5 BloomFilter.i ➜ bloomfilter git:(master) ✗...

    Tags: LINKS, scaffolder, genome, Perl, Perl_Gthr_key_ptr, setting, anaconda

    2162 days ago

  • Parallel Processing with Perl !

    Here is a small tutorial on how to make best use of multiple processors for bioinformatics analysis. One best way is using perl threads and forks. Knowing how these threads and forks work is very important before implementing them. Getting to know how these work would be really useful before read...

    Tags: Parallel, Processing, Perl, Bioinformatics, Programming

    2091 days ago

  • Benchmarking Perl Module !

    The benchmark module is a great tool to know the time the code takes to run. The output is usually in terms of CPU time. This module provides us with a way to optimize our code. With the advent of petascale computing and other multicore processor it is becoming a neccesity to know about the CPU t...

    Tags: Benchmark, Perl, Module, Script, Time

    2091 days ago

  • Steps to find all the repeats in the genome !

    To find repeats in a genome from 2 to 9 length using a Perl script, you can use the RepeatMasker tool with the "--length" option[0]. Here's a step-by-step guide: Install RepeatMasker: First, you need to install RepeatMasker on your system. You can download it from the RepeatMasker website[...

    Tags: Steps, Repeats, Genome, Perl, RepeatMasker

    259 days ago

  • Awesome perl frameworks, libraries and software - PART 1

    A curated list of awesome Perl frameworks, libraries and software. major/MySQLTuner-perl - MySQLTuner is a script written in Perl that will assist you with your MySQL configuration and make recommendations for increased performance and stability. kraih/mojo - Mojolicious - Perl...

    Tags: Awesome, perl, frameworks, libraries, software

    2500 days ago

  • PerlOneLiner for Bioinformatician

    FILE SPACING------------ # Double space a fileperl -pe '$\="\n"'perl -pe 'BEGIN { $\="\n" }'perl -pe '$_ .= "\n"'perl -pe 's/$/\n/'perl -nE 'say' # Double space a file, except the blank linesperl -pe '$_ .= "\n" unless /^$/'perl -pe '$_ .= "\n" if /\S/' # Triple space a fileperl -pe '$\="\n\n"...

    Tags: perl, perloneliner, onelioner

    2313 days ago