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. Jun 14, 2007
    • Andreas Kusalananda Kähäri's avatar
      Allow the registry to load ini-files with load_all(). · 96c9ac3a
      Andreas Kusalananda Kähäri authored
      The Registry will try to load the specified file (specified by argument
      to the method load_all(), in the envrionment variable ENSEMBL_REGISTRY,
      or the file '~/.ensembl_init', as before) as an ini-file.  If this fails
      due to the file having the wrong format, the code reverts to the old
      behaviour of using require() on the same file.
      
      This is an example of a simple ini-file.  There is no check to see
      that e.g. 'dbname' is actually present or to avoid calling the adaptor
      initialization routines with unnecessary parameters (we trust the user
      to get this right).  The correct adaptor is chosen by peeking at the
      'group' setting.
      
      
      ; Simple Ensembl config file example
      
      ; The 'default' section is special and its settings will be implicit for
      ; all other sections in this file but may be overridden by individual           ; sections.  There should be no 'alias' settings in the 'default'
      ; section.
      
      [default]
      user    = anonymous
      host    = ensembldb.ensembl.org
      group   = Core
      
      [the_human_db]
      species = Human
      dbname  = homo_sapiens_core_45_36g
      alias   = mary
      alias   = john
      
      [the_mouse_db]
      species = Mouse
      dbname  = mus_musculus_core_45_36f
      alias   = minnie
      alias   = mickey
      
      ; Configuration ends here
      96c9ac3a
    • Glenn Proctor's avatar
      Removed quotes around $seq_region_name at line 245 as these were causing problems for some users. · a2cb486e
      Glenn Proctor authored
      The quotes are no longer necessary since the bind_param statement now explicitly specifies the type, removing the nasty MySQL casting issue that caused them to be added in the first place.
      a2cb486e
    • Andreas Kusalananda Kähäri's avatar
      Changed from "At Risk (Under Development)" to "Stable": · 3748448d
      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()
      3748448d
  2. Jun 13, 2007
  3. Jun 12, 2007
  4. Jun 08, 2007
  5. Jun 07, 2007
  6. Jun 06, 2007
  7. Jun 05, 2007
  8. Jun 04, 2007
  9. Jun 03, 2007
  10. Jun 01, 2007
    • Andreas Kusalananda Kähäri's avatar
      From request by Laura. · 08a95cf6
      Andreas Kusalananda Kähäri authored
      From the code:
      
      # This parser will read Direct Xrefs from a simple tab-delimited file.
      # The columns of the file should be the following:
      #
      # 1)    Accession ID
      # 2)    Ensembl ID
      # 3)    Type (one of 'transcript', 'gene', or 'translation',
      #       will default to 'gene')
      # 4)    Display label (will default to the Accession ID in column 1)
      # 5)    Description (will default to the empty string)
      # 6)    Version (will default to '1')
      #
      # Columns 1 and 2 are obligatory.
      08a95cf6
    • Ian Longden's avatar
      21f86e14
  11. May 31, 2007
  12. May 30, 2007
    • Ian Longden's avatar
      bug fix, be more specific when getting xref · 6573d90d
      Ian Longden authored
      6573d90d
    • Andreas Kusalananda Kähäri's avatar
      Collapse all eval() calls into one. · 0cf4505d
      Andreas Kusalananda Kähäri authored
      Only clear old registry configuration if we have a configuration file
      name and if that file exists.
      0cf4505d
    • Patrick Meidl's avatar
      - changed MAX_ROWS to 30 · 700b88c4
      Patrick Meidl authored
      - rewrote fetch_by_stable_id*() methods to look up current versions of stable
        IDs in *_stable_id tables
      - new method lookup_current() to assist the former (also replaces
        _lookup_version())
      - new method add_all_current_to_history() to implement this behaviour for
        StableIdHistoryTree
      
      - new methods to get properties of current db:
        - get_current_release()
        - get_current_assembly()
      
      - fixed _resolve_type() to copy with non Ensembl-style stable IDs (e.g.
        Anopheles)
      
      - removed deprecated methods
      700b88c4
    • Patrick Meidl's avatar
      - added new methods: · 722bec70
      Patrick Meidl authored
        - get_latest_StableIdEvent(): find latest Event in tree for a given stable ID
        - getters/setters for current db properties:
          - current_release()
          - current_assembly()
          - current_dbname()
        - is_incomplete(): flag to indicate incomplete trees
      722bec70
    • Patrick Meidl's avatar
      - added new methods: · 813f08cb
      Patrick Meidl authored
        - current_version(): retrieves current version of stable ID from db
        - is_current(): test if this is the current version
        - get_latest_incarnation(): get latest incarnation of stable ID from db
        - is_latest(): test if this is the latest version
      
      - version() no longer lazy-loaded (now always set by adaptor)
      
      - removed deprecated methods
      813f08cb
  13. May 29, 2007