Bioinformatics containers used in St. Jude CAB
This repository hosts a collection of Dockerfiles for various bioinformatics tools. Each tool is contained in its own subdirectory, together with its specific Dockerfile and associated environment files.
.
├── README.md
├── tool1/
│ ├── Dockerfile
│ └── README.md
├── tool2/
│ ├── Dockerfile
│ └── README.md
├── tool3/
│ ├── Dockerfile
│ └── README.md
...
Each subdirectory contains:
- A
Dockerfile
used to build the Docker image for that specific tool. - A
README.md
with detailed information about:
- Tool-specific usage instructions
- Build arguments (if any)
- Runtime requirements
- Example commands
- Tool-specific documentation links
To use a specific tool, navigate to its subdirectory and refer to the README for detailed instructions.
Generally, to build an image, navigate to the tool's directory and run:
docker build -t toolname:version .
Refer to each tool's README for specific build instructions and available build arguments.
If you'd like to contribute a new tool or improve an existing one, please submit a pull request.
Ensure that you include both a Dockerfile
and a README
for any new tools.
This repository is licensed under Apache.
Individual tools may have their own licenses. Please check each tool's README
for specific licensing information.
For questions or issues, please open an GitHub issue in this repository.