nextflow.ui.console.ConsoleExtension.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nf-commons Show documentation
Show all versions of nf-commons Show documentation
A DSL modelled around the UNIX pipe concept, that simplifies writing parallel and scalable pipelines in a portable manner
The newest version!
package nextflow.ui.console
import org.pf4j.ExtensionPoint
/**
* Define the extension interface for console app
*
* @author Paolo Di Tommaso
*/
interface ConsoleExtension extends ExtensionPoint {
void run(String...args)
}