gatk-3.8/scala/src/org/broadinstitute/sting/queue/function/FileProvider.scala

12 lines
265 B
Scala

package org.broadinstitute.sting.queue.function
import java.io.File
/**
* An trait for @Input or @Output CommandLineFunction fields that are not files, but have a File that can be get/set.
*/
trait FileProvider {
/** Gets/Sets the file. */
var file: File
}