Applies to: | Any data object (except Priors Generators and other Output data objects) |
Returns: | Output Data |
Name | Description |
---|---|
format | The data format to use for the output. The type of the data object will determine which formats are available. |
output parameters | Each data format can have additional format specific parameter settings. See the documentation for the data format for more information. |
# Outputs the DNA Sequence Dataset called 'DNA' in FASTA format (with default settings) to a new output object provided with a default name output DNA in FASTA format # Outputs regions from the TFBS track in GFF-format (with genomic rather than relative coordinates) to an Output data document called 'Sites' (or appends the output to this document if it already exists) Sites = output TFBS in GFF format {Position="Genomic"} # Outputs motifs in the motifcollection in a format with 4 rows and N columns (with columns separated by commas) output MotifCollection3 in RawPSSM format {Orientation="Horizontal",Delimiter="Comma"} # Outputs the string 'Hello world! The value of X is' followed by the actual value of the data object named X (v2.0+) output "Hello world! The value of X is {X}!" |