Thank you for your interest in contributing to the Minimum Information about Xenobiotics-Microbiome Biotransformation (MIX-MB) standards! This is a community-driven project, and we welcome contributions from researchers, bioinformaticians, data curators, and anyone working in xenobiotic microbial biotransformation.
- How to Contribute
- Branching and Versioning
- Review and Endorsement Process
- What Makes a Good Standards Proposal?
- Code of Conduct
- Citing This Work
- Questions?
First time here?
- Here is the link to the current project board: BioXend Project Board to get oriented.
- Look for issues labeled
good-first-issue - Browse the Discussions board
There are several ways to participate, depending on your comfort level with(/out) GitHub:
You don't need a GitHub account to help shape MIX-MB. The current Non-github contributions are integrated via the MIX-MB Survey. Feedback collected through the survey will be triaged by a maintainer and converted into GitHub Issues so it enters the formal review process. Current results from the survey can be viewed with the notebook: [Standards/MIX-MB_Survey_Analysis.ipynb](Standards /MIX-MB_Survey_Analysis.ipynb).
If you have feedback on the standards documentation and template, but aren't familiar with Git:
- Go to the Issues tab
- Click "New Issue" and choose the appropriate template:
- Standards Feedback — for proposing changes to the MIX-MB minimum information checklists
- Template Modification — for suggesting changes to data submission template columns, descriptions, or controlled vocabularies
- Bug Report — for reporting errors in the pipeline or documentation
- Feature Request — for requesting new functionality or data fields
- Blank issue - if it's a general issue you would like to report
- Fill out the template and submit. A maintainer will review, and the community can discuss and endorse.
For direct contributions to the standards documents, templates, or nf workflow, all external contributors must work from a fork. Only maintainers added to the project can push branches directly to this repository.
-
Fork the repository by clicking the Fork button on the BioXend GitHub page. This creates a copy of the repo under your own GitHub account.
-
Clone your fork locally:
git clone https://github.com/<your-username>/BioXend.git cd BioXend
-
Add the upstream remote so you can stay up to date:
git remote add upstream https://github.com/zmahnoor14/BioXend.git
-
Sync with the latest
develbranch before starting any work:git fetch upstream git checkout devel git merge upstream/devel
-
Create a new branch from
devel(never work directly ondevelormain):git checkout -b your-branch-name
-
Make your changes. Please follow the versioning and file conventions described below.
-
Commit with a clear message following the convention:
[component] Brief description Examples: [standards] Add recommendation for pH reporting in Experiment table [template] Add new column for enzyme commission number in Biotransformation [workflow] Fix SMILES validation step -
Push to your fork:
git push origin your-branch-name
-
Open a Pull Request from your fork's branch to
zmahnoor14/BioXend:devel. GitHub will usually suggest the upstream repo as the target automatically — confirm the base repository iszmahnoor14/BioXendand the base branch isdevel, notmain. -
Reference the originating issue (if you were working on an issue) in your PR description using
Closes #XXorRelates to #XX. For best practices, generally there should be an open issue to which this PR is related to. If the issue doesnt exist, you can enter the issue and then after adding your contribution, mnetion that issue. This way changes are tracked properly. -
Apply a version-bump label to your PR (see Branching and Versioning below):
bump:patch,bump:minor, orbump:major. -
Your PR will be reviewed by at least one maintainer. Community endorsement (thumbs-up reactions or comments) is encouraged.
Browse open issues and pull requests. You can:
- Add a 👍 reaction to endorse a proposal
- Leave a comment with your perspective or additional evidence
- Reference relevant literature or datasets
Community consensus matters — proposals with broader endorsement will be prioritized.
GitHub Discussions is a first-class contribution channel for open-ended conversation that doesn't yet belong in an issue:
- Standards Proposal — Float ideas for new fields or classification changes before writing a formal issue
- Template Questions — Ask about column meanings, controlled vocabularies, or submission format
- General — Introduce yourself, share related work, or ask where to start
Discussions that reach consensus can be converted into issues and enter the review process.
This project uses a structured versioning system. Please see VERSION.md at the root of the repository for full details. In brief:
mainbranch contains only stable, endorsed releasesdevelbranch is the active working branch for all contributions- Each document (standards docs, template) and the workflow carry independent version numbers
- The overall framework version increments when any component has a new release
When making changes, do not manually update version numbers — this is handled automatically by GitHub Actions when changes are merged to main.
Pull Request authors are responsible for applying a version-bump label to their pull request so the automation knows what kind of change is being made:
| Label | When to use |
|---|---|
bump:patch |
Typo fixes, clarifications, broken links — no change to data requirements |
bump:minor |
New optional/recommended fields, backward-compatible additions |
bump:major |
Breaking changes: new mandatory fields, removed fields, renamed columns |
- Open your Pull Request on GitHub.
- In the right-hand sidebar, click Labels.
- Search for and select the appropriate label:
bump:patch,bump:minor, orbump:major.
- A proposal is submitted as an Issue or Pull Request.
- The community discusses and can endorse with 👍 reactions independently.
- After a minimum review period of 14 days, the maintainer evaluates community feedback.
- If endorsed by at least 1-2 independent contributors (besides the proposer), the change proceeds.
- The maintainer incorporates the change, updates the relevant version, and merges to
devel. - Periodically,
develis merged tomainas a new release.
For urgent fixes i.e bump:patch versioning updates (typos, broken links, clear errors), no review period is necessary.
When proposing changes to the MIX-MB minimum information checklists, please include the following, (sections are already present in the issue templates):
- Rationale: Why is this field/change necessary? Reference survey data or literature if possible.
- Classification: Should the field be Mandatory, Recommended, or Optional?
- Affected table(s): Which template sheet(s) would be impacted (Reference, Chemicals, Microbes, Experiment, Biotransformation)?
- Controlled vocabulary: If the field requires controlled terms, propose them or reference an existing ontology.
- Backward compatibility: Will this change break existing submitted data?
All contributors are expected to follow our Code of Conduct. Please read it before participating.
Releases of BioXend / MIX-MB will be soon archived on Zenodo and will be assigned a DOI, making the standards citable in academic publications.
If you're unsure where to start or how to contribute, open a Discussion or reach out to the main maintainer at mahnoor.zulfiqar@embl.de. We're happy to help!