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.
The code in this package is also automatically formatted by black
for consistency.
Please follow the README.md to install the package for development purposes. Be sure you run this:
pipenv install --dev
The agora-data-tools project follows the standard trunk based development development strategy.
To ensure the most fluid development, do not push to
dev
!
-
Please ask for write permissions to contribute directly to this repository.
-
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
-
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
-
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
-
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/
-
Make sure to run the auto python code formatter, black.
black ./
-
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
- 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.
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.
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.
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.
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)
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:
- Create new script in the transform submodule that matches the dataset name and name the function
transform_...
. For example, if you have a dataset namedgenome_variants
, your new script would besrc/agoradatatools/etl/transform/transform_genome_variants.py
. - Register the new transform function in
src/agoradatatools/etl/transform/__init__.py
. Look in that file for examples. - Modify the
apply_custom_transformations
insrc/agoradatatools/process.py
to include your new transform. - 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.
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:
- Create a new expectation suite by defining the expectations for the dataset in a Jupyter Notebook inside the
gx_suite_definitions
folder. Usemetabolomics.ipynb
as an example. You can find a catalog of existing expectations here. - Run the notebook to generate the new expectation suite. It should populate as a JSON file in the
/great_expectations/expectations
folder. - Add support for running Great Expectations on a dataset by adding
gx_enabled: true
to the configuration for the datatset in bothtest_config.yaml
andconfig.yaml
. Ensure that thegx_folder
andgx_table
keys are present in the configuration file and contain valid Synapse IDs for the GX reports and GX table, respectively.- You can prevent Great Expectations from running for a dataset by setting
gx_enabled: false
in the configuration for the dataset.
- You can prevent Great Expectations from running for a dataset by setting
- Test data processing by running
adt test_config.yaml --upload
and ensure that HTML reports with all expectations are generated and uploaded to the proper folder in Synapse.
This repository is currently home to three custom expectations that were created for use on agora-data-tools
datasets:
ExpectColumnValuesToHaveListLength
: checks to see if the lists in a particular column are the length that we expect.ExpectColumnValuesToHaveListMembers
: checks to see if the lists in a particular column contain only values that we expect.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.
If the transform includes nested columns (example: druggability
column in gene_info
tranform), please follow these four steps:
- In the config file, add the nested column name to the
gx_nested_columns
flag for the specific transform. This will convert the column values to a JSON parsable string.
gx_nested_columns:
- <nested_column_name>
- When creating the validator object in the gx_suite_definitions notebook, the nested column(s) must be included in the
nested_columns
list.
df = pd.read_json(<data_file>)
nested_columns = ['<nested_column_name>']
df = GreatExpectationsRunner.convert_nested_columns_to_json(df, nested_columns)
validator = context.sources.pandas_default.read_dataframe(df)
validator.expectation_suite_name = "<suite_name>"
- When validating the value type of the nested column, specify it as a string (see Step 1 for reasoning):
validator.expect_column_values_to_be_of_type("<nested_column_name>", "str")
- A JSON file containing the expected schema must be added here:
src/agoradatatools/great_expectations/gx/json_schemas/<transform_name>/<column_name>.json
. Use the JSON schema tool to create the schema template for your nested column.
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.