e745e167c1
* fix yml formatting * allow fastq.gz and fq.gz as file input, add meta.yml and test * fix yaml files * Revert "allow fastq.gz and fq.gz as file input, add meta.yml and test" This reverts commit 34002d7a7a8c7f7bb4600c3377f35c87849f71a4. * prettier magic! * fix comments for yamllint * remove node version number * fix linting errors Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> |
||
---|---|---|
.. | ||
Dockerfile | ||
main.nf | ||
meta.yml | ||
README.md |
Updating the docker container and making a new module release
Bcl2fastq2 and Cell Ranger are commercial tools from Illumina and 10X Genomics, respectively. The container provided for the cellranger nf-core module is not provided nor supported by either Illumina or 10x Genomics. Updating the bcl2fastq2 or Cell Ranger versions in the container and pushing the update to Dockerhub needs to be done manually.
-
Navigate to the appropriate download pages. - bcl2fastq2: download the linux rpm installer of the desired bcl2fastq2 version with
curl
orwget
. Place this file in the same folder where the Dockerfile lies. - Cell Ranger: download the tar ball of the desired Cell Ranger version withcurl
orwget
. Place this file in the same folder where the Dockerfile lies. -
Edit the Dockerfile. Update the bcl2fastq2 and Cell Ranger versions in this line:
ENV BCL2FASTQ2_VER=<VERSION> \ CELLRANGER_VER=<VERSION>
-
Create and test the container:
docker build . -t nfcore/cellrangermkfastq:<CELLRANGER_VERSION>
-
Access rights are needed to push the container to the Dockerhub nfcore organization, please ask a core team member to do so.
docker push nfcore/cellrangermkfastq:<CELLRANGER_VERSION>