Skip to content

Commit

Permalink
explicitly make the signature empty, seems to solve precomp issue, bu…
Browse files Browse the repository at this point in the history
…t this probably should be filed as a rakudo bug
  • Loading branch information
cjfields committed Dec 20, 2015
1 parent 9f8b603 commit 30e3fae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/Bio/Tools/IUPAC.pm6
Expand Up @@ -113,7 +113,7 @@ class Bio::Tools::IUPAC {

#end

method next_seq {
method next_seq() {

for 0..@!string.end() -> $i {
next unless @!string[$i] || @!alpha[$i] > 1;
Expand Down Expand Up @@ -154,7 +154,7 @@ class Bio::Tools::IUPAC {

#end

method iupac_iup {
method iupac_iup() {
return %IUP;
}

Expand All @@ -168,7 +168,7 @@ class Bio::Tools::IUPAC {

#end

method iupac_iub {
method iupac_iub() {
return %IUB;
}

Expand All @@ -183,7 +183,7 @@ class Bio::Tools::IUPAC {

#end

method iupac_rev_iub {
method iupac_rev_iub() {
return %REV_IUB;
}

Expand All @@ -198,7 +198,7 @@ class Bio::Tools::IUPAC {

#end

method count {
method count() {
my $count = 1;
$count *= $_.elems for @!alpha;
return $count;
Expand Down

0 comments on commit 30e3fae

Please sign in to comment.