in reply to How can I define the subroutine to get the result of the appended string i.e. ATGCTTTT?
use warnings; use strict; use DNAappend; my $a='ATGC'; my $b='TTTT'; print"\n\n"; print DNAappend::DNAappend($a,$b); print"\n\n"; exit;
See also:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How can I define the subroutine to get the result of the appended string i.e. ATGCTTTT?
by supriyoch_2008 (Monk) on Sep 25, 2012 at 18:24 UTC |