Skip to main content

Guidelines

FAIR-BioRS Guidelines v2.0.0

1. Prepare prior to the development of the software

1.1. Select a version control system platform to work from (GitHub, Bitbucket, or GitLab are suggested) and create a repository there for your software.

1.2. Select a license and include the license terms in a file called “LICENSE” using plain text or markdown syntax. Locate it in the root directory of the software. While the FAIR4RS principles do not require research software to be open-source, it is highly recommended to use a license approved by the Open Source Initiative (OSI). Amongst those licenses, it is encouraged to use the permissive MIT or Apache 2.0 licenses. Use choosealicense.com and/or the SPDX License List for help. During development, ensure that the software’s license is compatible with the software’s dependencies.

2. Follow coding standards and best practices during development

2.1. Have code-level documentation (e.g., in code comments, description in the file headers) when deemed necessary for code reuse.

2.2. Record dependencies as per standard practices for the coding language, e.g. in a requirements.txt file for Python code, in a package.json file for Node projects, or in a DESCRIPTION file for R packages.

2.3. Follow language-specific standards and best practices (e.g. PEP 8 Style Guide for Python Code, Google’s R Style Guide for R code, etc.) and document them (c.f. 3.2).

2.4. Ensure that inputs/outputs of the software follow any applicable community standards (e.g., General Feature Format (GFF) for genomic annotation files). Use fairsharing.org for finding relevant standards.

3. Document software

3.1. Maintain the documentation in a file called "README" using plain text or markdown syntax. Locate it in the root directory of the software. Mature/complex software may require additional, more sophisticated documentation that can be developed e.g. using tools such as GitHub pages or Read the Docs. The following aspects must be documented as applicable

  • Overall description of the software (e.g., in an “About” section)
  • High-level dependencies of the software (e.g., Node or Python version)
  • Inputs and outputs of the software, parameters and data required to run the software
  • The standards followed
  • How to contribute to the software
  • How to cite the software

In addition, follow any community-agreed standard documentation approach when available (e.g., the Common Workflow Language (CWL) for describing command line tools).

3.2. Document changes between different versions of the software in a file called “CHANGELOG” using plain text or markdown syntax. Locate it in the root directory of the software. We suggest following the “Keep a changelog” conventions for the content of the CHANGELOG file and the Semantic Versioning v2.0.0 for version numbers.

4. Include metadata files

4.1. Include a codemeta.json metadata file in the root directory of the software. The CodeMeta generator can be used. Provide, at least, the following fields:

  • “name”
  • “description”
  • "identifier"
  • “keywords”
  • “programmingLanguage”
  • “dataPublished”
  • “dateModified”
  • “license”
  • “givenName”, “familyName” and “affiliation” for each author.

When applicable, also provide the following fields: “isPartOf”, “hasPart”, and “relatedLink“. See the CodeMeta documentation for a definition of the fields.

4.2. Include a CITATION.cff metadata file in the root directory of the software. The CFF file initializer can be used. Provide, at least, the following fields:

  • “abstract”
  • "identifiers"
  • “keywords”
  • “license”
  • “date-released”
  • "given-names", “family-names" and “affiliation” for each author.

See the CFF documentation for a definition of the fields.

5. Share software on a repository

5.1. If applicable, share the software on a deployment repository e.g., PyPI or Conda for Python packages, npm registry for JavaScript packages, CRAN for R packages or Bioconductors for R-packages aimed at the analysis of genomics data, Dockstore for Docker-based tools, etc. Do this for each version release of your software.

5.2. Share the software on the archival repository Zenodo (suggested) or Figshare. The source code of the software with all the above-mentioned metadata files must be archived. Executables and sample input and output data must be included as well if available. Do this for each version release of your software.

5.3. Archive the software repository on Software Heritage directly from your version control system platform. You can use the Software Heritage “save code now” page. This is only required once as Software Heritage will then periodically archive your source code automatically.

6. Register software on a registry

Register the software on the bio.tools registry. Optionally register the software on the Research Resource Identifiers (RRID) Portal as well. This is only required once but the registry-specific metadata must be updated with each version release as needed.

Was this page helpful?