ThreeStateTrackDb: Difference between revisions

From genomewiki
Jump to navigationJump to search
m (add mention of hgFindSpec)
(Changed large composite section from using sequential versions to a system with only 2-3 file names total.)
Line 52: Line 52:
=== Managing large composite tracks ===
=== Managing large composite tracks ===


To address this issue, each large composite track will be moved to its own file, named in the form: trackDb.compositeName.version.ra, and include all of its contained track stanzas.  To minimize the amount of editing required, the include directive will be modified to have a release attribute.  Since includes are processed line-per-line, not as part of a stanza, an attribute is an easier approach than adding a release tag.
To address this issue, each large composite track will be moved to its own file with all of its contained track stanzas.  To minimize the amount of editing required, the include directive will be modified to have a release attribute.  Since includes are processed line-per-line, not as part of a stanza, an attribute is an easier approach than adding a release tag.


For example, if a developer created the file '''encGencodeV1.trackDb.ra''', the following line could be added to trackDb.ra (or trackDb.wgEncode.ra, or whatever):
For example, if a developer created the file '''encGencode.ra''', the following line could be added to trackDb.ra (or trackDb.wgEncode.ra, or whatever):


  include encGencodeV1.trackDb.ra alpha
  include encGencode.ra alpha


When QA gets it, this will become:
When QA gets it, this will become:


  include encGencodeV1.trackDb.ra alpha,beta
  include encGencode.ra alpha,beta


And when it is released:
And when it is released:


  include encGencodeV1.trackDb.ra alpha,beta,public
  include encGencode.ra alpha,beta,public


When changes need to be made to an already-released composite track, the composite trackDb file is copied, the version number in the name is incremented, and it is added to cvs.  So two copies of the entire file will exist, and trackDb.ra will look like:
When changes need to be made to an already-released composite track, the composite trackDb file is copied to a new file name and it is added to cvs.  So two copies of the entire file will exist, and trackDb.ra will look like:


   include encGencodeV2.trackDb.ra alpha
   include encGencode.new.ra alpha
   include encGencodeV1.trackDb.ra beta,public
   include encGencode.ra beta,public


The changes won't leak to the RR before QA approves them and promotes the version 2 file to alpha,beta,public.  Once an older version of a composite track is no longer on any systems, the corresponding .ra file can be cvs removed.
When the track is in QA and staged on hgwbeta, this will become:


Note that the version numbers here are just sequential for a given composite track, and they do not necessarily correspond to the ENCODE "V2" track releases.
  include encGencode.new.ra alpha,beta
  include encGencode.ra public
 
To release the new version, QA will:
 
  cp encGencode.new.ra encGencode.ra
  cvs commit encGencode.ra
 
And change the include line back to:
 
    include encGencode.ra alpha,beta,public
 
The changes won't leak to the RR before QA approves them and promotes the new version to alpha,beta,public.
 
== Changing a track that is mid-QA==
Often, a developer needs to start more work on a track before it is through the QA process and released and make the changes visible on genome-test for data contributors.  In this case, a third file can be created and committed to CVS:
 
  include encGencode.latestForContributor.ra alpha  #name is arbitrary
  include encGencode.new.ra beta
  include encGencode.ra public
 
When QA of the original update is complete that change released, the developer is free to copy their latest version to encGencode.new.ra and create a push queue entry for it.  Once the latest changes have been cvs committed to encGencode.new.ra and there are no include directives for the arbitrarily-named encGencode.latestForContributor.ra file, the latter can be cvs removed.

Revision as of 22:12, 12 February 2010

This is a proposal for modifying the trackDb release process developed by Brian, Brooke, and Markd. It is intended as a straight-forward modification to the existing process to address some of the current problems; not as a major,comprehensive change.

This address the following issues:

  • Release tags currently do not prevent modifications to tracks already on the RR from leaking to the RR while in QA. This is caused by the release tag not accurately modeling the process. This is addressed by adding a third state: "public".
  • Managing releases of updated versions of ENCODE composite tracks is complex, requiring editing a potentially large number of release tags in trackDb.ra stanza files. Also, the release tag doesn't currently work on the composite track stanza.

trackDb release process

The three state trackDb (and hgFindSpec) release process is:

  • alpha state: make alpha run on hgwdev loads all tracks with release alpha into trackDb and hgFindSpec regardless of the table existing.
  • beta state: make beta run on hgwbeta loads all tracks with release beta into trackDb and hgFindSpec only if the table exists.
  • public state: make public run on hgwbeta loads all tracks with release public into trackDb_public and hgFindSpec_public only of the table exists.

Having no release tag is equivalent to having all 3 release tags present.

QA can look at trackDb_public on hgwbeta-public.cse.ucsc.edu as a final check before pushing it to the RR. Then trackDb_public and hgFindSpec_public will be pushed from mysqlbeta to mysqlrr, renaming them to trackDb and hgFindSpec.

Tracks that don't already exist on the RR function as they do now:

  • Developer creates table(s) and adds a corresponding stanza to trackDb.ra, with no release tags
  • QA pushes table to mysqlbeta, does a make beta, and QAs track
  • When track is ready, QA does a make public, then pushes the tables and trackDb_public to mysqlrr, renaming them to trackDb

If a developer subsequently wants to make changes to the track, it would work like this:

  • the old stanza:
track someTrack
shortLabel Mediocre RNAs
visibility hide
  • becomes two stanzas:
track someTrack
release alpha
shortLabel Great RNAs
visibility pack
track someTrack
release beta,public
shortLabel Mediocre RNAs
visibility hide
  • nothing leaks out to the RR before it is ready. QA looks at the changes on hgwbeta by changing the first stanza to 'release alpha,beta' and the second stanza to release public
  • when it is deemed worthy, the trackDb.ra entry can be collapsed back to one stanza, with no release tags (although leaving release alpha,beta,public in there would have the exact same effect):
track someTrack
shortLabel Great RNAs
visibility pack

Managing large composite tracks

To address this issue, each large composite track will be moved to its own file with all of its contained track stanzas. To minimize the amount of editing required, the include directive will be modified to have a release attribute. Since includes are processed line-per-line, not as part of a stanza, an attribute is an easier approach than adding a release tag.

For example, if a developer created the file encGencode.ra, the following line could be added to trackDb.ra (or trackDb.wgEncode.ra, or whatever):

include encGencode.ra alpha

When QA gets it, this will become:

include encGencode.ra alpha,beta

And when it is released:

include encGencode.ra alpha,beta,public

When changes need to be made to an already-released composite track, the composite trackDb file is copied to a new file name and it is added to cvs. So two copies of the entire file will exist, and trackDb.ra will look like:

 include encGencode.new.ra alpha
 include encGencode.ra beta,public

When the track is in QA and staged on hgwbeta, this will become:

 include encGencode.new.ra alpha,beta
 include encGencode.ra public

To release the new version, QA will:

 cp encGencode.new.ra encGencode.ra
 cvs commit encGencode.ra

And change the include line back to:

   include encGencode.ra alpha,beta,public

The changes won't leak to the RR before QA approves them and promotes the new version to alpha,beta,public.

Changing a track that is mid-QA

Often, a developer needs to start more work on a track before it is through the QA process and released and make the changes visible on genome-test for data contributors. In this case, a third file can be created and committed to CVS:

 include encGencode.latestForContributor.ra alpha  #name is arbitrary
 include encGencode.new.ra beta
 include encGencode.ra public

When QA of the original update is complete that change released, the developer is free to copy their latest version to encGencode.new.ra and create a push queue entry for it. Once the latest changes have been cvs committed to encGencode.new.ra and there are no include directives for the arbitrarily-named encGencode.latestForContributor.ra file, the latter can be cvs removed.