2010-06-15 12:43:46 +08:00
|
|
|
package org.broadinstitute.sting.queue.function
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Utility class to map a set of inputs to set of outputs.
|
2010-06-26 04:51:13 +08:00
|
|
|
* The QGraph uses this function internally to map between user defined functions.
|
2010-06-15 12:43:46 +08:00
|
|
|
*/
|
2010-06-26 04:51:13 +08:00
|
|
|
class MappingFunction(val inputs: Set[Any], val outputs: Set[Any]) extends QFunction {
|
|
|
|
|
override def toString = "<map>" // For debugging
|
2010-06-15 12:43:46 +08:00
|
|
|
}
|