-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Meet template convention #21
base: dev
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you Monika for all the work! However, there are some things that needs to be addressed before merging. Let me know if the comments are not very clear.
@@ -0,0 +1,4 @@ | |||
params { | |||
igenomes_base = 's3://ngi-igenomes/igenomes' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we had agreed that all this was supposed to point to either the eu-west1 featured bucked or the original featured bucket, if I remember correctly. Do we still need to keep the igenome??
@@ -0,0 +1,4 @@ | |||
params { | |||
igenomes_base = 's3://ngi-igenomes/igenomes' | |||
reference_bucket = 's3://lifebit-featured-datasets/' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
reference_bucket = 's3://lifebit-featured-datasets/' | |
reference_data_bucket = 's3://lifebit-featured-datasets/' |
@@ -0,0 +1,3 @@ | |||
params { | |||
igenomes_base = 's3://reference-data-cyn-pro/igenomes' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
igenomes_base = 's3://reference-data-cyn-pro/igenomes' | |
reference_data_bucket = 's3://reference-data-cyn-pro/igenomes' |
if we need to keep this for cynapxe, then maybe it would be best to have it as reference_data_bucket
@@ -1,5 +1,5 @@ | |||
docker.enabled = true | |||
|
|||
params { | |||
input = "testdata/input_mix_vcf_origin.tsv" | |||
input = "s3://lifebit-featured-datasets/pipelines/mutational-signature-nf/testdata/input_mix_vcf_origin.tsv" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
input = "s3://lifebit-featured-datasets/pipelines/mutational-signature-nf/testdata/input_mix_vcf_origin.tsv" | |
input = "${params.reference_data_bucket}"/pipelines/mutational-signature-nf/testdata/input_mix_vcf_origin.tsv" |
@@ -92,6 +103,9 @@ profiles { | |||
cloudos_production_test_2 { includeConfig 'conf/cloudos_production_test_2.config' } | |||
} | |||
|
|||
includeConfig 'conf/containers/quay.config' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this line has to go before the profile definition otherwise it will not work on ihis and it's already there, so I would remove it from here!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
there are no reference files for this pipeline?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also here https://github.com/lifebit-ai/mutational-signature-nf/blob/74e1bebcf78d67bcc1755359a8085da01197d65b/nextflow.config#L37C5-L37C49 there's this container definition that is not parametrised. I am not sure that this is ever used but we might need to double check that!
signature_tool_lib_container = "518054667335.dkr.ecr.${params.container_region}.amazonaws.com/lifebitai/signature_tool_lib:1e58326" | ||
utility_scripts_container = "518054667335.dkr.ecr.${params.container_region}.amazonaws.com/lifebitai/utility_scripts:b586275" | ||
awscli_bcftools_container = "518054667335.dkr.ecr.${params.container_region}.amazonaws.com/lifebitaiorg/awscli_bcftools_comb:v0.1" | ||
main_container = '518054667335.dkr.ecr.${params.container_region}.amazonaws.com/lifebitai/ubuntu:18.10' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These all need the double quotes, otherwise the ${params.container_region}
will not be compiled and it will be used as a string.
Overview
Purpose
To have curated pipeline in IHIS.
Acceptance Criteria/Jira Ticket
DEL-15019
Changes
Internal CloudOS Tests
Client CloudOS Tests
PR Checklist
Author to check:
[Fix:|Feat:|Docs:]
based on PR typedev
branch for DSL1 orDSL2-dev
for DSL2 translations