-
Notifications
You must be signed in to change notification settings - Fork 2
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
add hic minimap2 #44
add hic minimap2 #44
Conversation
|
workflows/genomeassembly.nf
Outdated
GENOMESCOPE_MODEL( hifi_reads_ch ) | ||
ch_versions = ch_versions.mix(GENOMESCOPE_MODEL.out.versions) | ||
/*GENOMESCOPE_MODEL( hifi_reads_ch ) | ||
ch_versions = ch_versions.mix(GENOMESCOPE_MODEL.out.versions)*/ |
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.
Was it commented out with the purpose of debugging and does it need uncommenting?
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.
yes, that was the purpose :) I will remove them now.
workflows/genomeassembly.nf
Outdated
@@ -312,24 +312,27 @@ workflow GENOMEASSEMBLY { | |||
GENOMESCOPE_MODEL.out.hist, | |||
GENOMESCOPE_MODEL.out.ktab | |||
) | |||
} | |||
}*/ |
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.
Was it commented out with the purpose of debugging and does it need uncommenting?
workflows/genomeassembly.nf
Outdated
@@ -347,7 +350,7 @@ workflow GENOMEASSEMBLY { | |||
PREPARE_INPUT.out.busco, | |||
GENOMESCOPE_MODEL.out.hist, | |||
GENOMESCOPE_MODEL.out.ktab | |||
) | |||
)*/ |
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.
Was it commented out with the purpose of debugging and does it need uncommenting?
@yumisims Was this version of the pipeline tested on a big dataset with |
@ksenia-krasheninnikova not necessary to test on a bigger genome. I encountered an image downloading problem, have you seen this before? |
@yumisims what image exactly threw the error? Can't see it in the current CI run. As I understand the purpose of adding minimap2 option is to be able to run the pipeline on big genomes. |
.github/workflows/ci.yml
Outdated
@@ -38,6 +38,9 @@ jobs: | |||
- name: Check out pipeline code | |||
uses: actions/checkout@v3 | |||
|
|||
- name: Setup apptainer |
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 step is already in this CI, duplicated.
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.
Check TreeVal to see how to run pipeline if you use nf-core download.
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.
ok
@muffato do you know the reason why Container library: 'quay.io' is not valid? thanks |
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ? | ||
'https://depot.galaxyproject.org/singularity/python:3' : | ||
'docker.io/python:3.9' }" |
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 container definition worked for nextflow run, probably not for nf-core download?
I tried to run the test on dev
branch yesterday again without problems.
https://github.com/sanger-tol/genomeassembly/actions/runs/8988294821
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 can't see any difference with the Treeval CI and container definition.
On the farm, nf-core download
works for me.
Or maybe a version incompatibility ? (e.g. different version of nf-core or apptainer/singularity or docker)
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.
That is what we discussed yesterday in the pipeline meeting.
Obviously -l
flag didn't help. Now we can try to fix the nf-core
version as the one on local.
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.
Oki. I'll let you try that
PR checklist
nf-core lint
).nextflow run . -profile test,docker --outdir <OUTDIR>
).docs/usage.md
is updated.docs/output.md
is updated.CHANGELOG.md
is updated.README.md
is updated (including new tool citations and authors/contributors).