The upcoming Ensembl release (e!91) will include several updates to the regulation API and with it a farewell to many objects that have given the regulation API its characteristic look and feel over the years.

The changes listed below only affect the way we store high-throughput sequencing experiments and their results. Probe feature related objects and regulatory features are not affected. If you use any of the following in your scripts, please keep an eye for our updated doxygen documentation once the Ensembl release 91 is out.

ResultSet and InputSubset

The long serving ResultSet object and its faithful companion, the InputSubset object, will be removed. Over the last releases these data types have been extensively modified and moved to more specific API objects, until they only served to store information about the read files (InputSubset) and their respective alignments (ResultSet).

From now on alignments are handled by a new API object, called “Alignment”.

The InputSubset object will be replaced by two new objects:

  1. ReadFile
  2. ReadFileExperimentalConfiguration

A ReadFile represents a FASTQ file generated by a high-throughput sequencing experiment, such as ChIP-seq or DNAse-seq.

The experimental configuration that led to the creation of the read file is stored in the ReadFileExperimentalConfiguration object. It links the Experiment object to the ReadFiles generated by it and contains the following information:

  • which biological and
  • which technical replicate a ReadFile is within an Experiment,
  • whether it is paired-end, and
  • whether it is the result of multiple sequencing runs of the same sample.

Using the experimental configuration the Ensembl Regulation Sequence Alignment (ERSA) pipeline decides how to analyse the various high-throughput sequencing data.

AnnotatedFeature and FeatureSet

In the current API the AnnotatedFeature object represents enriched regions or peaks from ChIP-seq and DNase-seq experiments.

In the future the AnnotatedFeature API object will become the Peak object.

AnnotatedFeature objects used to be accessed by first fetching an appropriate FeatureSet object and then the AnnotatedFeatures linked to it.

A FeatureSet object that links to a set of AnnotatedFeatures represented a peak calling analysis from a ChIP-seq-like experiment. These are now represented by the new PeakCalling object.

DataSet

The venerable DataSet object will be retired and it will not be replaced.

CoordSystem

The CoordSystem object in regulation, not to be confused with the CoordSystem object used for Ensembl core databases, has been retired after many years of service.

It was mostly known for its Adaptor, which gave scary error messages, if the Registry had been misconfigured. It could also make features unexpectedly vanish from the website.

There are no plans to replace its function.

Summary

Current Object New Object Notes
InputSubset ReadFile
ReadFileExperimentalConfiguration
ResultSet Alignment
AnnotatedFeature Peak
FeatureSet PeakCalling
DataSet Retired.
CoordSystem Retired. Regulation-specific object. Not to be confused with that used for the Ensembl core databases.