Galaxy related code for Methylator
This repository includes a Dockerfile to create a Docker image for methylator. This allows for a consistent and isolated environment to run methylator and its associated tools.
To build the Docker image, navigate to the root of this repository and run the following command:
docker build -t methylator-galaxy .This command will build an image named methylator-galaxy with the tag latest.
To run methylator with your data, you will typically need to mount your data directory into the container. Replace /path/to/your/data with the actual path to your data on your host machine:
docker run -v /path/to/your/data:/data methylator-galaxy methylator <your_methylator_commands_here>Inside the container, your data will be accessible under the /data directory.