-
Notifications
You must be signed in to change notification settings - Fork 5
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
Feature/nucleovar operator #1365
base: develop
Are you sure you want to change the base?
Conversation
buehlere
commented
Oct 4, 2024
•
edited
Loading
edited
- Adding nextflow operator for nucleovar pipeline
- option to create input json from nf-core schemas
- passing nfcore template parameter to ridgeback
adding the ability to specify an app
|
||
class NextflowRunObject(RunObject): | ||
logger = logging.getLogger(__name__) | ||
# logger = logging.getLogger(__name__) |
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.
We can probably remove this if it is not used anywhere
runner/pipeline/pipeline_cache.py
Outdated
@@ -16,7 +16,7 @@ def get_pipeline(pipeline): | |||
resolved_dict = _pipeline.get("app") | |||
else: | |||
resolver_class = PipelineCache._get_pipeline_resolver(pipeline.pipeline_type) | |||
resolver = resolver_class(pipeline.github, pipeline.entrypoint, pipeline.version) | |||
resolver = resolver_class(pipeline.github, pipeline.entrypoint, pipeline.nfcore_template, pipeline.version) |
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.
Can you re-order params so nfcore_template is last one and put nfcore_template as param with default value, since I am not sure this will work for CWL pipelines.