~ubuntu-branches/ubuntu/trusty/bioperl/trusty

« back to all changes in this revision

Viewing changes to Bio/AlignIO/psi.pm

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy
  • Date: 2011-06-17 13:51:18 UTC
  • mfrom: (3.1.6 sid)
  • Revision ID: james.westby@ubuntu.com-20110617135118-hncy38e0134j8oi5
Tags: 1.6.901-1
* New upstream release.
* Point debian/watch to search.cpan.org.
* Build using dh and overrides:
  - Use Debhelper 8 (debian/rules, debian/control).
  - Simplified debian/rules.
* Split into libbio-perl-perl, as discussed with the Debian Perl team.
  (debian/control, debian/bioperl.install, debian libbio-perl-perl.install)
* debian/control:
  - Incremented Standards-Version to reflect conformance with Policy 3.9.2.
    No other changes needed.
  - Vcs-Browser URL made redirectable to viewvc.
  - Removed useless ‘svn’ in the Vcs-Svn URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: psi.pm 16123 2009-09-17 12:57:27Z cjfields $
2
1
#
3
2
# BioPerl module for Bio::AlignIO::psi
4
3
#
52
51
of the bugs and their resolution. Bug reports can be submitted via
53
52
the web:
54
53
 
55
 
  http://bugzilla.open-bio.org/
 
54
  https://redmine.open-bio.org/projects/bioperl/
56
55
 
57
56
=head1 AUTHOR - Jason Stajich
58
57
 
124
123
        my $seq = Bio::LocatableSeq->new(-seq => $seqs{$id},
125
124
                                        -id  => $id,
126
125
                                        -start => 1,
127
 
                                        -end   => length($seqs{$id}) - $gaps
 
126
                                        -end   => length($seqs{$id}) - $gaps,
 
127
                                         -alphabet => $self->alphabet,
128
128
                    );
129
129
        $aln->add_seq($seq);
130
130
    }