Style Guide

Coding style

This style guide lays down coding conventions in the CGAT repository. For new scripts, follow the guidelines below.

As the repository has grown over years and several people contributed, the style between scripts can vary. For older scripts, follow the style within a script/module. If you want to apply the newer style, make consistent changes across the script.

In general, we want to adhere to the following conventions:

  • Variable names are lower case throughout with underscores to separate words, such as peaks_in_interval = 0

  • Function names start with a lower case character and a

    verb. Additional words start in upper case, such as doSomethingWithData()

  • Class names start with an upper case character, additional words

    start again in upper case, such as class AFancyClass():

  • Class methods follow the same convention as functions, such as

    self.calculateFactor()

  • Class attributes follow the same convention as variables, such

    as self.factor

  • Global variables - in the rare cases they are used, are upper case

    throughout such as DEBUG=False

  • Module names should start with an uppercase letter, for example,

    TreeTools.py in order to distinguish them from built-in and third-party python modules.

  • Script names are lower-case throughout with underscores to separate words, for example, bam2geneprofile.py or join_table.py.

  • Cython extensions to scripts (via pyximport) should be put into the script name starting with an underscore. For example, The extensions to bam2geneprofile.py are in _bam2geneprofile.pyx.

For new scripts, use the template script_template.py.

The general rule is to write easily readable and maintainable code. Thus, please

  • document code liberally and accurately

  • make use of whitespaces and line-breaks to break long statements

    into easily readable statements.

In case of uncertainty, follow the python style guides as much as possible. The relevant documents are:

For documenting CGAT code, we follow the conventions for documenting python code:

For writing doc-strings, we use the numpy guide:

See here for an example.

In terms of writing scripts, we follow the following conventions:

  • Each script should define the -h and --help options to give command line help usage.

  • For tabular output, scripts should output tsv formatted tables. In these tables, records are separated by new-line characters and fields by tab characters. Lines with comments are started by the # character and are ignored. The first uncommented line should contain the column headers. For example:

    # This is a comment
    gene_id length
    gene1   1000
    gene2   2000
    # Another comment
    
  • Scripts should follow the unix philosophy. They should concentrate on one task and do it well. Ideally, the major input and output can be read from and written to standard input and standard output, respectively.

  • The names of scripts should be meaningful. Most of our scripts perform data transformation of one kind of another, these are often called a2b.py. The distinctions can be subtle. Examples are:

    gtf2gtf.py - manipulate transcript models

    Input is gtf, output is gtf. This script manipulates gene sets (filtering, merging, …).

    gtf2gff.py - convert a transcript set to genomic features

    Input is gtf, output is gff. This script takes gene sets and changes the hierarchical description within a gtf file to the flat description of features in a gff file. For example, this script can define gene territories, regulatory domains or genomic annotations based on a gene set.

    bed2gff.py - convert bed to gff/gtf

    Input is bed, output is gff. As both formats describe intervals in the genome, this script basically does a conversion between the two formats.

    Quite a few scripts contain the 2table or 2stats. These compute, respectively, properties or summary statistics for entries in a file. For example:

    <no title>

    Input is gtf. For each gene or transcript, compute selected properties. If there are 10,000 genes in the input, the output table will contain 10,000 rows.

    gff2stats.py - count features, etc. in gff file

    Input is gff. Compute summary statistics across all features in the file. Here, aggregate sizes or similar by feature type or name per chromosome. No matter if there are 10,000 or 100,000 interval is the input, the output will be have the same number of rows.

Where to put code

Different parts of the code base go into separate directories.

Scripts

Scripts are python code that contains a main() function and are intended to be executed. Scripts go into the directory /scripts

Modules

Modules contain supporting code and are imported by scripts or other modules. Modules go into the directory /CGAT.

Pipelines

Pipeline scripts and modules go into the directory /CGATPipelines.

Pipelines

All components of a pipeline should go into the CGATPipelines directory. The basic layout of a pipeline is:

CGATPipelines/pipeline_example.py
             /PipelineExample.py
             /PipelineExample.R
             /pipeline_example/pipeline.ini
                              /conf.py
                              /sphinxreport.ini
pipeline_example.py

The main pipeline code. Pipelines start with the word pipeline and follow the conventions for script names, all lower case with underscores separating words.

pipeline_example/pipeline.ini

Default values for pipeline configuration values.

pipeline_example/conf.py

Configuration script for sphinxreport.

pipeline_example/sphinxreport.ini

Configuration script for sphinxreport.

pipeline_docs/pipeline_example

Sphinxreport for pipeline.

PipelineExample.py

Python utility methods and classes specific to this pipeline. Once methods and classes are shared between pipelines, consider moving them to a separate module.

PipelineExample.R

R utility functions specific to this pipeline.

  • Make sure that the pipeline.ini file exists and contains example/default values with annotation.

  • Make sure that the pipeline can be imported from any directory, especially those not containing any data files or configuration files. This is important for the documentation of the pipeline to be built.

Other guidelines

  • Only add source code and required data to the repository. Do not add .pyc files, backup files created by your editor or other files.

  • In order to build documentation, each script, module and pipeline needs to be importable. Thus, make sure that when your pipeline depends on specific files, it does not fail when imported but not executed.

  • There is a style guide for naming script options based on 5 groups. These are designed to increase clarity and familiarity across the script collection.

Script options

The purpose of this section of the style guide is to standardise many of the common options that the CGAT script collection uses. This will add transparency and improve user-friendliness by adding a level of familiarity across scripts.

There are four option groups defined in the guide. Not all options will fit into one of these as many options are specific to a script. This guide will also be a useful reference for new script development by providing a common framework.

The general structure for option names is multiple parts with parts separated by -. Generally, aim to have the most significant bit first in the option as option names can be shortened on the command line if they are unambiguous. For example, --annotation-gtf-file can be abbreviated as --annotation-gtf, --annotation, etc.

Single-part options such as --colours are permitted if they are unambiguous in the context of the script.

In general single letter (-a, -g, …) type options can be used for very common options, but every option should have a long name and use of long names is preferred in pipelines. If possible, use short letters that are consistent with “related” unix commands.

Option nomenclature that does not fit into one of the below groups should be explicit. For instance use --output-with-value instead of --with-value.

Option groups:

option components in ‘[]’ are variable

  • files:

    The file options support both input and ancillary files for scripts. Some scripts require multiple files of the same format. In these instances [purpose] differentiates the different files within the script. --[purpose]-[format]-file=[file] e.g. --annotation-gtf-file or --bam-file or --exons-gtf-file.

  • actions:

    Actions denote the central methods a script applies to the data set. Some scripts might only be able to apply a single action to a data set, while others might allow a sequence of actions to be performed. Scripts that support multiple actions should use the --methods=[action1, action2,...], for example --methods=sort-by-name,filter-by-length. Scripts that only support a single action use --method=[action], for example: --method=select-longest-transcript.

    Arguments that are relevant for a particular action should be easily associated with the action. In the example above, the minimum length could be given as --filter-min-length.

    Do not hesitate to make arguments as explicit as possible. Consider also using: --method=filter-by-sequence-length and --filter-min-sequence-length.

  • parameters:

    Parameters are provided to scripts with a specific purpose. To make these as explicit as possible these also conform to the three-part naming convention. Very common is to set minimum/maximum values. For these, follow a --[object]-[attribute]-[stat]=[value] convention, e.g., --insert-size-min=100 or --insert-size-std=20.

  • outputs:

    The prinicipal output of a script is generally fed to standard output. Scripts that create multiple output files should define them using the generic --output-filename-pattern. Any %s pattern will be substituted inside the script with a section name. Optionally, it might also append a suffix for the file type. For example a script called with --output-filename-pattern="test_%s" might create files such as test_plot.png, test_removed.tsv for the sections plot and removed.

    In order to facilicate the incorporation of multiple-output scripts into pipelines, scripts should permit explicit labeling of output files such as --output-filename-<section> where section corresponds to the sections used in the script. In the example above, the script should also accept options called --output-filename-plot and --output-filename-removed.

    Note

    TODO: This can be implemented generically in Experiment.py

Documentation

Writing doc-strings

Functions should be documented through their doc-string using restructured text. For example:

    def computeValue(name, method, accuracy=2):

        :param name: The name to use.
        :type name: str.
        :param method: method to use.
        :type state: choice of ('empirical', 'parametric')
        :param accuracy:
        :type accuracy: integer
        :returns:  int -- the value
        :raises: AttributeError, KeyError

Writing documentation for scripts
---------------------------------

There is a minimum standard for documentation to maintain clarity of
tools and code.  The documentation for any given script should follow
the basic outline in :doc:`scripts/cgat_script_template`.

Three main headers exist:

`Purpose`
   Describe the overall purpose and function of the script and the
   input and output formats.  This can be extensive and include
   sub-headers to further describe script functionality.  For
   example::

       Purpose
       -------

       This script takes a :term:`gtf` formatted file and computes
       meta-gene profiles over various annotations derived from the
       :term:`gtf` file.

       A meta-gene profile is an abstract genomic entity over which
       reads stored in a :term:`bam` formatted file have been
       counted. A meta-gene might be an idealized eukaryotic gene
       (upstream, exonic sequence, downstream) or any other genomic
       landmark of interest such as transcription start sites.
Usage

Describe example use cases for the script with one or more options. In addition provide the head of both example input and example output files. Example input and output:

Usage
-----
    samtools view example.bam

    READ1    163    1     13040   15      76M     =       13183   219     ...
    READ1    83     1     13183   7       76M     =       13040   -219    ...
    READ2    147    1     13207   0       76M     =       13120   -163    ...

    python bam2bed.py example.bam

    1       13039   13115   READ1     15      +
    1       13119   13195   READ2     0       +
    1       13182   13258   READ1     7       -
    1       13206   13282   READ2     0       -

Example usage:

python example_script.py
      --infile=example.bam
      --option1=choice
      --method=method1

Options

Describe all of the options for the script. If necessary provide extensive detail of the methods of each option and how they are combined to provide the intended functionality of the script. This should include all choice for options with a verbose description of what that choice does. For example:

Profiles
--------
Different profiles are accessible through the ``--method`` option. Multiple
methods can be applied at the same time. While ``upstream`` and ``downstream``
typically have a fixed size, the other regions such as ``CDS``, ``UTR`` will be
scaled to a common size.

utrprofile
    UPSTREAM - UTR5 - CDS - UTR3 - DOWNSTREAM
    gene models with UTR. Separate the coding section from the non-coding part.

There is a fourth template-specific header; the command line options that are automatically generated for every CGAT script:

Command line options

These are automatically generated from cgat_script_template.py - template for cgat scripts and detail each option specified within the script. No further details need to be added to this section.

In addition, please pay attention to the following:

  • Declare input data types for genomic data sets in optparse using the metavar keyword. For example:

    parser.add_option( "--extra-intervals", dest = "extra_intervals",
                    metavar="bed", help = "..." )
    

    Setting the type permits the script to be integrated into workflow systems such as galaxy.

  • Please provide a meaningful example in the command line help (see above for minimum requirements).

  • Be verbose. Something that is not documented within a script will not be used.

  • Add meaningful tags to your scripts (:Tags:) so that they can be grouped into categories. Please choose from the following controlled vocabulary. If needed, additional terms can be added to this list.

    • Broad Themes

      • Genomics

      • NGS

      • MultipleAlignment

      • GenomeAlignment

      • Intervals

      • Genesets

      • Sequences

      • Variants

      • Protein

    • Formats

      • BAM

      • BED

      • GFF

      • GTF

      • FASTA

      • FASTQ

      • WIGGLE

      • PSL

      • CHAIN

    • Actions

      • Summary - summarizing entities within a file, such as counting the number of intervals within a file, etc.

      • Annotation - annotating individual entities within a file, such as adding length, composition, etc. to intervals.

      • Comparison - comparing the same type of entities, such as overlapping to sets of intervals.

      • Conversion - converting between different formats for the similar types of objects (Intervals in gff/bed format).

      • Transformation - transforming one entity into another, such as transforming intervals into sequences.

      • Manipulation - changing entities within a file, such as filtering sequences.