forked from nf-core/demultiplex
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:nf-core/demultiplex
- Loading branch information
Showing
9 changed files
with
55 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
AWS ECR Config | ||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
Config to set public AWS ECR images wherever possible | ||
This improves speed when running on AWS infrastructure. | ||
Use this as an example template when using your own private registry. | ||
---------------------------------------------------------------------------------------- | ||
*/ | ||
|
||
docker.registry = 'public.ecr.aws' | ||
podman.registry = 'public.ecr.aws' | ||
|
||
process { | ||
withName: 'BASES2FASTQ' { | ||
container = 'docker.io/elembio/bases2fastq:1.1.0' | ||
} | ||
withName: 'BCL2FASTQ' { | ||
container = 'docker.io/nfcore/bcl2fastq:2.20.0.422' | ||
} | ||
withName: 'BCLCONVERT' { | ||
container = 'docker.io/nfcore/bclconvert:4.0.3' | ||
} | ||
withName: 'MD5SUM' { | ||
container = 'docker.io/library/ubuntu:20.04' | ||
} | ||
withName: 'UNTAR' { | ||
container = 'docker.io/library/ubuntu:20.04' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters