Skip to content
Snippets Groups Projects
Commit dcd0ce92 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Added example of a biopet executable

parent aefb33d9
No related branches found
No related tags found
No related merge requests found
package org.example.group
import nl.lumc.sasc.biopet.core.{ MainCommand, BiopetExecutable }
/**
* Created by pjvanthof on 30/08/15.
*/
object ExecutableExample extends BiopetExecutable {
/** This list defines the pipeline that are usable from the executable */
def pipelines: List[MainCommand] = List(
org.example.group.pipelines.BiopetPipeline,
org.example.group.pipelines.SimplePipeline
)
/** This list defines the (biopet)tools that are usable from the executable */
def tools: List[MainCommand] = Nil
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment