Results for "Complementary"

Tags

  • Reverse Complement Problem Solved with Perl

    Question at http://rosalind.info/problems/1b/ #Find the reverse complement of a DNA string.#Given: A DNA string Pattern.#Return: Pattern, the reverse complement of Pattern.use strict;use warnings;my $string="AAAACCCGGT";my $finalString="";my %hash = (    "C" => "G",   ...

    Tags: Bioinformatics, Computational Biology, Education, Solution, Puzzle, Study, Script, Perl, Reserve, Complementary

    3235 days ago