Skip to content
Snippets Groups Projects
This project is mirrored from https://:*****@github.com/Ensembl/ensembl.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
  1. Apr 13, 2007
  2. Apr 12, 2007
  3. Apr 11, 2007
  4. Apr 05, 2007
  5. Apr 04, 2007
  6. Apr 03, 2007
    • Andreas Kusalananda Kähäri's avatar
      Fixed POD. · 5f89f8df
      Andreas Kusalananda Kähäri authored
      Fixed comment.
      5f89f8df
    • Andreas Kusalananda Kähäri's avatar
      Added tests for cdna_start(), cdna_end(), genomic_start(), and · 0db47390
      Andreas Kusalananda Kähäri authored
      genomic_end() on translations.
      
      Current API and test DB passes the tests.
      0db47390
    • Andreas Kusalananda Kähäri's avatar
      Added new methods: · 89fbc961
      Andreas Kusalananda Kähäri authored
          $translation->cdna_start();    # or...
          $translation->cdna_start($transcript);
              # Returns the start position of the translation in cDNA
              # coordinates.  Providing the transcript explicitly speeds
              # things up a bit.  The transcript is used in a call to
              # $exon->cdna_coding_start($transcript);
      
          $translation->cdna_end();    # or...
          $translation->cdna_end($transcript);
              # Returns the end position of the translation in cDNA
              # coordinates.  Providing the transcript explicitly speeds
              # things up a bit.  The transcript is used in a call to
              # $exon->cdna_coding_end($transcript);
      
      
          $translation->genomic_start();
              # Returns the start position of the translation in genomic
              # coordinates on the forward strand.
      
          $translation->genomic_end();
              # Returns the end position of the translation in genomic
              # coordinates on the forward strand.
      89fbc961
    • Andreas Kusalananda Kähäri's avatar
      Added tests for cdna_start(), cdna_end(), cdna_coding_start(), · f249611d
      Andreas Kusalananda Kähäri authored
      cdna_coding_end(), coding_region_start(), and coding_region_end() on
      exons.
      
      Current API and test DB passes the tests.
      f249611d
    • Andreas Kusalananda Kähäri's avatar
      Added new methods: · 6520767f
      Andreas Kusalananda Kähäri authored
          $exon->cdna_start($transcript);
              # Returns the start position of the exon in cDNA coordinates.
      
          $exon->cdna_end($transcript);
              # Returns the end position of the exon in cDNA coordinates.
      
      
          $exon->cdna_coding_start($transcript);
              # Returns the start position of the coding region of the exon
              # in cDNA coordinates.  Returns undef if the whole exon is
              # non-coding.
      
          $exon->cdna_coding_end($transcript);
              # Returns the end position of the coding region of the exon
              # in cDNA coordinates.  Returns undef if the whole exon is
              # non-coding.
      
      
          $exon->coding_region_start($transcript);
              # Returns the start position of the coding region of the exon in
              # genomic coordinates on the forward strand.  Returns undef if
              # the whole exon is non-coding.
      
          $exon->coding_region_end($transcript);
              # Returns the end position of the coding region of the exon in
              # genomic coordinates on the forward strand.  Returns undef if
              # the whole exon is non-coding.
      
      
      Since an exon may be part of one or more transcripts, the relevant
      transcript must be given as argument ot these methods.
      6520767f
  7. Mar 29, 2007
  8. Mar 27, 2007
  9. Mar 20, 2007
  10. Mar 15, 2007
  11. Mar 12, 2007
  12. Mar 08, 2007
  13. Mar 07, 2007
  14. Mar 06, 2007
  15. Mar 05, 2007
  16. Mar 02, 2007
  17. Mar 01, 2007