-
Notifications
You must be signed in to change notification settings - Fork 103
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
Replace publishDir with workflow output definition #27
base: master
Are you sure you want to change the base?
Conversation
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
Signed-off-by: Dr Marco Claudio De La Pierre <marco.delapierre@gmail.com>
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
…f into workflow-output-dsl Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
Signed-off-by: Paolo Di Tommaso <paolo.ditommaso@gmail.com>
I fixed the bug to make the index file work with single files, try again? |
Now, i'm getting a different error. Please, add tests
|
Can you push your changes so I can see how you are configuring the index file? |
Just using this in the rnaseq-nf
|
That is strange. There is an e2e test called |
Working on my end now |
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
Signed-off-by: Ben Sherman <bentshermann@gmail.com>
I refactored the outputs to be a channel of samples, where each sample contains all associated files that were created throughout the pipeline. In this case, each sample has salmon results and fastqc logs. The output directory looks like this: $ find results/ | sort
results/
results/ggal_gut
results/ggal_gut/fastqc
results/ggal_gut/quant
results/index.json
results/multiqc
results/multiqc/multiqc_report.html And the index file looks like this: [
{
"id": "ggal_gut",
"quant": "/home/bent/projects/nextflow-io_rnaseq-nf/results/quant",
"fastqc": "/home/bent/projects/nextflow-io_rnaseq-nf/results/fastqc"
}
] It looks like there are some issues with the publish destination paths, the index file does not match the actual paths. |
let's rebase this changes over workflow-output-2nd branch, and keep |
Prototype for nextflow-io/nextflow#4784