Results for "NT"

Pages

  • Reverse Complement Problem Solved with Perl

    ...ind.info/problems/1b/ #Find the reverse complement of a DNA string.#Given: A DNA...ng Pattern.#Return: Pattern, the reverse complement of Pattern.use strict;use war...ar=substr $string, $aa, 1;    #print $hash{$char};   &nb...

    3296 days ago

  • Frequent words problem solution by Perl

    ...nfo/problems/1a/ #Find the most frequent k-mers in a string.#Given: A DNA string Text and an integer k.#Return: All most frequ...ring, $aa,$kmer;    #print "$myStr\n";    ...sh{$myStr}=$km;    }#Print all key which have matching v...

    3296 days ago

  • Pattern Matching Problem Solution with Perl

    ...sp; if ($myWin eq $myStr) {        #print "$myWin eq $myStr\n";        print $aa;    }}}

    3296 days ago

  • Genome Assembly Tools and Software - PART2 !!

    ...a SAM file and a set of variant calls in VCF format, HAPCOMPA...Post Assembly Genome Improvement ToolkitPAGIT (Post Assem...Processing Short Read Alignments in SAM/BAM format / RNA-Seq...lyzer ConPADE 1.00 – Contig Ploidy and Allele Dosage Es...

    2730 days ago

  • Awesome perl frameworks, libraries and software - PART 2

    ...lation. These script are currently in use by the Lab, so expec...iya/KeiSpade-CMS - The contents management system that us...or Perl 5 pullingshots/Shipment - perl interface into va...asei/attean - A Perl Semantic Web Framework kablamo/git-...

    2538 days ago

  • Awesome perl frameworks, libraries and software - PART 3

    ...A simple Perl script that prints GCC warning options you can...topaz/perl-mandelbrot - Interactive Mandelbrot set render...rpe - A pure perl implementation of the Nagios NRPE daemo...Sane database change management jonreid/XcodeCoverage -...

    2538 days ago

  • Awesome perl frameworks, libraries and software - PART 4

    ... - Not written by me, maintained by me : Apachebuddy.pl...binary manager tagomoris/fluent-agent-lite - Lightweight...guration for your Github account(s) bigplum/nginx-tcp-lua-mod.../thicknet - TCP session interception and injection framew...

    2538 days ago

  • Awesome perl frameworks, libraries and software - PART 5

    ...browser moose/Moo - Minimalist Object Orientation (with Moose compatibilit...static PPM-based URL compressor / decompressor jnthn/6model - Just a place...occy/p5-Compiler-Parser - Create Abstract Syntax Tree for Perl5 cgutteridge...

    2538 days ago

  • Hello Python World !

    As I mentioned earlier, I will keep on posting one Python script per day to introduce you to Python programmi...d programmer or not, this tutorial is intended for everyone who wishes...uage, and has a very straightforward syntax. The simplest directive in...

    2227 days ago

  • Python Numeric Variables and Types !

    Python is completely object oriented, and not "statically typed". You do not ne...variable in Python is an object. To define an integer, use the following syntax in Script1:  Numbers Script1.py myintval = 7print(myintval) Run...

    2227 days ago