All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nextflow.plugin.Priority.groovy Maven / Gradle / Ivy

Go to download

A DSL modelled around the UNIX pipe concept, that simplifies writing parallel and scalable pipelines in a portable manner

There is a newer version: 24.08.0-edge
Show newest version
/*
 * Copyright (c) 2020-2021. Seqera Labs, S.L.
 *
 * All Rights reserved
 *
 */

package nextflow.plugin

import java.lang.annotation.ElementType
import java.lang.annotation.Retention
import java.lang.annotation.RetentionPolicy
import java.lang.annotation.Target

/**
 * Allow the definition of plugin priority order, smaller value is an higher priority
 *
 * @author Paolo Di Tommaso 
 */

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@interface Priority {
    int value()
    String group() default ''
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy