This project is mirrored from https://:*****@github.com/Ensembl/ensembl.git.
Pull mirroring updated .
- 15 Jul, 2013 1 commit
-
-
Alessandro Vullo authored
This means that CoordSystem, DensityType, Map::Marker, Map::Ditag, Map::Qtl, MiscSet, OntologyTerm and SeqRegionSynonym have now a fast constructor available. Accordingly, new_fast is removed from Analysis, Feature, DataFile, DBEntry, RepeatConsensus, Translation and UnmappedObject together with the import of weaken and isweak from Scalar::Util.
-
- 03 Apr, 2013 1 commit
-
-
Magali Ruffier authored
-
- 25 Mar, 2013 1 commit
-
-
Andy Yates authored
-
- 24 Sep, 2012 1 commit
-
-
Andy Yates authored
-
- 21 Sep, 2012 1 commit
-
-
Andy Yates authored
[ENSCORESW-262]. Customised the Exon summary as hash, gene and transcript summaries have been improved. Biotype mapper can ask objects for their SO term and knows Variation objects are already annotated with a code. BioType mapper caches SO retrieval so it is a massive speed increase for large result sets.
-
- 24 May, 2012 1 commit
-
-
Andy Yates authored
-
- 22 May, 2012 1 commit
-
-
Andy Yates authored
ENSCORESW-159. Fix for issue found with coding_region_start which was using the wrong method in the transcript object.
-
- 01 Apr, 2012 1 commit
-
-
Andy Yates authored
Replacing the 6 coordinate methods with versions which can operate on transcripts which have not been persisted to a database. The DBID is still used for caching purposes
-
- 10 Jan, 2012 1 commit
-
-
Andy Yates authored
-
- 28 Oct, 2011 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 24 Oct, 2011 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 19 Aug, 2011 1 commit
-
-
Andy Yates authored
-
- 25 May, 2011 1 commit
-
-
Kieron Taylor authored
-
- 05 Jan, 2011 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 06 Oct, 2010 2 commits
-
-
Eugene Kulesha authored
-
Eugene Kulesha authored
for origin overlapping genes take into account exons with negative start and with start greater then end
-
- 01 Oct, 2010 1 commit
-
-
Eugene Kulesha authored
exons of the genes overlapping chromosome origin are attached to the normal slice, but with negative coordinates
-
- 15 Sep, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
attached slice.
-
- 26 Aug, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
slice was given. Noticed by Michael S.
-
- 24 Aug, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 23 Aug, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
Arg [1] : Bio::EnsEMBL::Exon exon Example : if ($exonA->equals($exonB)) { ... } Description : Compares two exons for equality. The test for eqality goes through the following list and terminates at the first true match: 1. If Bio::EnsEMBL::Feature::equals() returns false, then the exons are *not* equal. 2. If both exons have stable IDs: if these are the same, the exons are equal, otherwise not. 3. If the exons have the same start, end, strand, and phase, then they are equal, otherwise not. Return type : Boolean (0, 1) Exceptions : Thrown if a non-transcript is passed as the argument.
-
- 16 Aug, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
<ensembl-dev@ebi.ac.uk> to <dev@ensembl.org>.
-
- 13 Aug, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 23 Jul, 2010 1 commit
-
-
Ian Longden authored
_merge_ajoining_coords added to make sure that having more than one coord is wrong. Andy Yates wrote the code i just checked it and added it.
-
- 06 Jul, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
=head2 load Arg [1] : Boolean $load_xrefs Load (or don't load) xrefs. Default is to load xrefs. Example : $translation->load(); Description : The Ensembl API makes extensive use of lazy-loading. Under some circumstances (e.g., when copying genes between databases), all data of an object needs to be fully loaded. This method loads the parts of the object that are usually lazy-loaded. Returns : Nothing. =cut
-
- 06 May, 2010 1 commit
-
-
Ian Longden authored
-
- 01 Apr, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 02 Feb, 2010 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 05 May, 2009 1 commit
-
-
Andreas Kusalananda Kähäri authored
-
- 04 Mar, 2009 1 commit
-
-
Andreas Kusalananda Kähäri authored
Formatting of SYNOPSIS code. Passes unit tests.
-
- 29 Oct, 2008 1 commit
-
-
Daniel Rios authored
-
- 17 Oct, 2007 1 commit
-
-
Andreas Kusalananda Kähäri authored
the coding region does not start/end in this exon, it also will not end/start here.
-
- 12 Oct, 2007 2 commits
-
-
Andreas Kusalananda Kähäri authored
-
Andreas Kusalananda Kähäri authored
-
- 27 Jun, 2007 1 commit
-
-
Patrick Meidl authored
-
- 14 Jun, 2007 1 commit
-
-
Andreas Kusalananda Kähäri authored
cdna_start() cdna_end() cdna_coding_start() cdna_coding_end() coding_region_start() coding_region_end() Changed POD from saying "in genomic coordinates" to say "in slice-relative coordinates": coding_region_start() coding_region_end()
-
- 04 Apr, 2007 1 commit
-
-
Andreas Kusalananda Kähäri authored
No functional change.
-
- 03 Apr, 2007 2 commits
-
-
Andreas Kusalananda Kähäri authored
Fixed comment.
-
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.
-
- 12 Mar, 2007 1 commit
-
-
Patrick Meidl authored
-