- Display
- Display an ASCII representation of an object.
- Usage
- Display(obj)
Display(obj, Detail-> 2)
- Arguments
- obj (T) : the object can have any type.
- Optional Arguments
- ByteSize (INT). This option can be used for any object to change the size of other optional arguments can exist depending on the object.
e.g. Detail (INT) : level of detail at which the argument is being displayed.
- Returned Object
- No value is returned.
- Description
- The type of ASCII description depends on the particular AML object used. Some objects provides ASCII representations at several levels of detail. Refer to object constructors for precise display of a particular display.
- See Also
- ?, ??
Examples
AML># example of a Sequences object
AML> seq1 = Sequences("datafile.seq") # this command builds a
Sequences object from a list of ascii sequences
AML>Display(seq1, ViewPoint->Data) # displays the raw data
corresponding to the sequence
|