Skip to content

Latest commit

 

History

History
186 lines (123 loc) · 11.4 KB

CONTRIBUTING.md

File metadata and controls

186 lines (123 loc) · 11.4 KB

Contributing

We welcome all contributions! That said, this is a Sage Bionetworks owned project, and we use JIRA (AG/IBCDPE) to track any bug/feature requests. This guide will be more focussed on a Sage Bio employee's development workflow. If you are a Sage Bio employee, make sure to assign yourself the JIRA ticket if you decide to work on it.

Coding Style

The code in this package is also automatically formatted by black for consistency.

The Development Life Cycle

Install development dependencies

Please follow the README.md to install the package for development purposes. Be sure you run this:

pipenv install --dev

Developing at Sage Bio

The agora-data-tools project follows the standard trunk based development development strategy.

To ensure the most fluid development, do not push to dev!

  1. Please ask for write permissions to contribute directly to this repository.

  2. Make sure you are always creating feature branches from the dev branch. We use branches instead of forks, because CI/CD cannot access secrets across Github forks.

    git checkout dev
    git pull
  3. Create a feature branch from the dev branch. Use the Id of the JIRA issue that you are addressing and name the branch after the issue with some more detail like {user}/{JIRA}-123/add-some-new-feature.

    git checkout dev
    git checkout -b tyu/JIRA-123/some-new-feature
  4. At this point, you have only created the branch locally, you need to push this to your fork on GitHub.

    git push --set-upstream origin tyu/JIRA-123/some-new-feature

    You should now be able to see the branch on GitHub. Make commits as you deem necessary. It helps to provide useful commit messages - a commit message saying 'Update' is a lot less helpful than saying 'Remove X parameter because it was unused'.

    git commit changed_file.txt -m "Remove X parameter because it was unused"
    git push
  5. Once you have made your additions or changes, make sure you write tests and run the test suite. More information on testing below.

    pytest -vs tests/
  6. Make sure to run the auto python code formatter, black.

    black ./
  7. Test your changes by running agora-data-tools locally.

adt test_config.yaml

If your changes have to do with the way that files are uploaded to Synapse and/or uploading new records to the ADT GX Synapse table, create a new configuration file by copying test_config.yaml and changing the destination, gx_folder, and gx_table fields to testing locations that you own. The command will change to be:

adt my_dev_config.yaml --upload
  1. Once you have completed all the steps above, create a pull request from the feature branch to the dev branch of the Sage-Bionetworks/agora-data-tools repo.

A code maintainer must review and accept your pull request. Most code reviews can be done asyncronously. For more complex code updates, an "in-person" or zoom code review can happen between the reviewer(s) and contributor.

This package uses semantic versioning for releasing new versions. A github release should occur at least once a quarter to capture the changes between releases. Currently releases are minted by admins of this repo, but there is no formal process of when releases are minted except for more freqeunt releases leading to smaller changelogs.

Pre-Commit Hooks

This repository uses a number of pre-commit hooks to enforce our formatting standards. Before committing changes, make sure to run the following (assuming development dependencies are already installed):

pre-commit run --all-files

Some needed changes will be done automatically by the pre-commit hooks. In other cases, you may need to make changes manually. Make any manual changes and rerun pre-commit. Ensure that all pre-commit hooks pass locally. Our GitHub Actions CI pipeline will run these hooks automatically and Pull Requests will not be able to be merged unless all hooks pass.

Testing

Running tests

This package uses pytest to run tests. The test code is located in the tests subdirectory.

Here's how to run the test suite:

pytest -vs tests/

Tests are also run automatically by Github Actions on any pull request and are required to pass before merging.

Test Development

Please add tests for new code. These might include unit tests (to test specific functionality of code that was added to support fixing the bug or feature), integration tests (to test that the feature is usable - e.g., it should have complete the expected behavior as reported in the feature request or bug report), or both.

Mock Testing

It is recommended to use the following style (see example below) for mock testing across this package:

from unittest.mock import patch
...
patch.object(MODULE_NAME, "FUNCTION_TO_MOCK_NAME".return_value=SOME_RETURN_VALUE)

Transforms

This package has a src/agoradatatools/etl/transform submodule. This folder houses all the individual transform modules required for the package. Here are the steps to add more transforms:

  1. Create new script in the transform submodule that matches the dataset name and name the function transform_.... For example, if you have a dataset named genome_variants, your new script would be src/agoradatatools/etl/transform/transform_genome_variants.py.
  2. Register the new transform function in src/agoradatatools/etl/transform/__init__.py. Look in that file for examples.
  3. Modify the apply_custom_transformations in src/agoradatatools/process.py to include your new transform.
  4. Write a test for the transform:
    • For transform tests, we are using a Data-Driven Testing strategy
    • To contribute new tests, assets in the form of input and output data files are needed.
      • The input file is loaded to serve as the data fed into the transform function, while the output file is loaded in to check the function output against.
    • These tests should include multiple ways of evaluating the transform function, including one test that should pass (good input data) and at least one that should fail (bad input data).
    • For some functions, it may be appropriate to include multiple passing datasets (e.g. for functions that are written to handle imperfect data) and/or multiple failing datasets (e.g. for transforms operating on datasets that can be unclean in multiple distinct ways).
    • Each transform function should have its own folder in test_assets to hold its input and output data files. Inputs should be in CSV form and outputs in JSON form.
    • Use pytest.mark.parameterize to loop through multiple datasets in a single test.
    • The class TestTransformGenesBiodomains can be used as an example for future tests contibuted.

Great Expectations

This package uses Great Expectations to validate output data. The src/agoradatatools/great_expectations folder houses our file system data context and Great Expectations-specific configuration files. Eventually, our goal is for each agora-data-tools dataset to be convered by an expectation suite. To add data validation for more datasets, follow these steps:

  1. Create a new expectation suite by defining the expectations for the dataset in a Jupyter Notebook inside the gx_suite_definitions folder. Use metabolomics.ipynb as an example. You can find a catalog of existing expectations here.
  2. Run the notebook to generate the new expectation suite. It should populate as a JSON file in the /great_expectations/expectations folder.
  3. Add support for running Great Expectations on a dataset by adding gx_enabled: true to the configuration for the datatset in both test_config.yaml and config.yaml. After updating the config files reports should be uploaded in the proper locations (Prod, Testing) when data processing is complete.
    • You can prevent Great Expectations from running for a dataset by removing the gx_enabled: true from the configuration for the dataset.
  4. Test data processing by running adt test_config.yaml and ensure that HTML reports with all expectations are generated and uploaded to the proper folder in Synapse.

Custom Expectations

This repository is currently home to three custom expectations that were created for use on agora-data-tools datasets:

  1. ExpectColumnValuesToHaveListLength: checks to see if the lists in a particular column are the length that we expect.
  2. ExpectColumnValuesToHaveListMembers: checks to see if the lists in a particular column contain only values that we expect.
  3. ExpectColumnValuesToHaveListMembersOfType: checks to see if the lists in a particular column contain members of the type we expect.

These expectations are defined in the /great_expectations/gx/plugins/expectations folder. To add more custom expectations, follow the instructions here.

DockerHub

Rather than using GitHub actions to build and push Docker images to DockerHub, the Docker images are automatically built in DockerHub. This requires the sagebiodockerhub GitHub user to be an Admin of this repo. You can view the docker build here.