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. Jul 03, 2007
  2. Jul 02, 2007
  3. Jun 29, 2007
  4. Jun 28, 2007
  5. Jun 27, 2007
  6. Jun 26, 2007
  7. Jun 25, 2007
  8. Jun 21, 2007
    • Andreas Kusalananda Kähäri's avatar
      Added new optional argument $external_db_name to · ac52bc8e
      Andreas Kusalananda Kähäri authored
      fetch_all_by_external_name() in GeneAdaptor.pm, TranscriptAdaptor.pm,
      and in TranslationAdaptor.pm.
      
      This will limit the returned genes, transcripts, or translations, to
      those that originates from the named external database.
      
      This also means adding the optional argument to
      list_gene_ids_by_extids(), list_transcript_ids_by_extids(),
      list_translation_ids_by_extids(), and to _type_by_external_id() in
      DBEntryAdaptor.pm.
      
      The matching is done on 'db_name' in the 'external_db' table with LIKE
      and an appended '%' to the given $external_db_name.
      ac52bc8e
  9. Jun 20, 2007
  10. Jun 18, 2007
  11. Jun 15, 2007
  12. Jun 14, 2007
    • Will Spooner's avatar
      ea268756
    • Will Spooner's avatar
      Reimplemented the dump_interpro method so that it dumps any xrefs,... · 55dce2ed
      Will Spooner authored
      Reimplemented the dump_interpro method so that it dumps any xrefs, object_xrefs and go_xrefs that may be dependent on the interpro xrefs
      55dce2ed
    • Glenn Proctor's avatar
      Removed ecs*, ia64* from list of servers. · d924d408
      Glenn Proctor authored
      Added ens-research:3309
      d924d408
    • 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