Skip to content

Instantly share code, notes, and snippets.

@dbolser
Created April 1, 2011 13:25
Show Gist options
  • Select an option

  • Save dbolser/898133 to your computer and use it in GitHub Desktop.

Select an option

Save dbolser/898133 to your computer and use it in GitHub Desktop.
sub swapify {
my $self = shift;
## Take a copy
my $swapped = $self->chimera;
## Swap it
$swapped->swap;
## Return the swapified version
return $swapped;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment