A Nextflow plugin to use IBM aspera protocol in pipelines
Please note that this is a community contributed plugin and is a collaboration between
- Jorge Aguilera (@jagedn) as a contributor from Incremental Steps.
To use this plugin in your Nextflow pipeline, add the following to your nextflow.config file:
plugins {
id 'nf-aspera'
}Once configured the plugin you can use the operators provided by the plugin. For example:
include { ascp } from 'plugin/nf-aspera'
workflow {
Channel.ascp( client: 'demo', destination:'downloads/', source: 'aspera-test-dir-small/10MB.1') | view
}To build the plugin:
make assemble- Build and install the plugin to your local Nextflow installation:
make install - Run a pipeline with the plugin:
nextflow run hello -plugins nf-aspera
This project is licensed under the Apache License 2.0 – see the LICENSE file for details.