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

Added SampleLibraryTag

parent ede612ee
No related branches found
No related tags found
No related merge requests found
package nl.lumc.sasc.biopet.core
import nl.lumc.sasc.biopet.core.config.Configurable
import org.broadinstitute.gatk.utils.commandline.Argument
/**
* Created by pjvan_thof on 2/16/15.
*/
trait SampleLibraryTag extends Configurable {
@Argument(doc = "Sample ID", shortName = "sample", required = false)
var sampleId: Option[String] = root match {
case tag: SampleLibraryTag => tag.sampleId
case _ => None
}
@Argument(doc = "Library ID", shortName = "library", required = false)
var libId: Option[String] = root match {
case tag: SampleLibraryTag => tag.libId
case _ => None
}
}
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