~ubuntu-branches/ubuntu/saucy/bioperl/saucy-proposed

« back to all changes in this revision

Viewing changes to Bio/SeqUtils.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2009-03-10 07:19:11 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20090310071911-fukqzw54pyb1f0bd
Tags: 1.6.0-2
* Removed patch system (not used):
  - removed instuctions in debian/rules;
  - removed quilt from Build-Depends in debian/control.
* Re-enabled tests:
  - uncommented test command in debian/rules;
  - uncommented previously missing build-dependencies in debian/control.
  - Re-enabled tests and uncommented build-dependencies accordingly.
* Removed libmodule-build-perl and libtest-harness-perl from
  Build-Depends-Indep (provided by perl-modules).
* Better cleaning of empty directories using find -type d -empty -delete
  instead of rmdir in debian/rules (LP: #324001).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: SeqUtils.pm,v 1.34.2.2 2006/11/16 19:05:59 cjfields Exp $
 
1
# $Id: SeqUtils.pm 15115 2008-12-08 20:00:49Z cjfields $
2
2
#
3
3
# BioPerl module for Bio::SeqUtils
4
4
#
18
18
 
19
19
    use Bio::SeqUtils;
20
20
    # get a Bio::PrimarySeqI compliant object, $seq, somehow
21
 
    $util = new Bio::SeqUtils;
 
21
    $util = Bio::SeqUtils->new();
22
22
    $polypeptide_3char = $util->seq3($seq);
23
23
    # or
24
24
    $polypeptide_3char = Bio::SeqUtils->seq3($seq);
107
107
 
108
108
=head1 CONTRIBUTORS
109
109
 
110
 
Roy Chaudhuri, roy at colibase d bham d ac d uk
 
110
Roy R. Chaudhuri <roy.chaudhuri at gmail.com>
111
111
 
112
112
=head1 APPENDIX
113
113