Results for "Words"

Tags

  • Clump Finding Problem Solved with Perl

    The question at http://rosalind.info/problems/1d/ Script are moved to http://bioinformaticsonline.com/snippets/view/34633/clump-finding-problem-solved-with-perl

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

    2315 days ago

  • Pattern Matching Problem Solution with Perl

    Problem at http://rosalind.info/problems/1c/ #Find all occurrences of a pattern in a string.#Given: Strings Pattern and Genome.#Return: All starting positions in Genome where Pattern appears as a substring. Use 0-based indexing.use strict;use warnings;my $string="GATATATGCATATACTT";my $subStr="A...

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

    3233 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

    3233 days ago

  • Frequent words problem solution by Perl

    Solved with perl http://rosalind.info/problems/1a/ #Find the most frequent k-mers in a string.#Given: A DNA string Text and an integer k.#Return: All most frequent k-mers in Text (in any order).use strict;use warnings;my $string="ACGTTGCATGTCGCATGATGCATGAGAGCT";my $kmer=4; my %myHash;my $max=0...

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

    3233 days ago