Add missing binaty and statis library
[jabaws.git] / binaries / src / ViennaRNA / Progs / RNAplot.ggo
1 # Name of your program
2 package "RNAplot" # don't use package if you're using automake
3
4 purpose "Draw RNA Secondary Structures"
5
6 #usage "RNAplot [options]\n"
7
8 # Version of your program
9 #version "2.0"   # don't use version if you're using automake
10
11
12 # command line options passed to gengetopt
13 args "--file-name=RNAplot_cmdl --include-getopt --default-optional --func-name=RNAplot_cmdline_parser --arg-struct-name=RNAplot_args_info"
14
15
16 description "The program reads RNA sequences and structures from stdin in the format as produced by\
17  RNAfold and produces drawings of the secondary structure graph.\nThe coordinates are produced using\
18  either E. Bruccoleri's naview routines, or a simple radial layout method.\n\nIf the sequence was\
19  preceded by a line of the form\n\n>name\n\nthe output file will be named \"name_ss.ps\" otherwise\
20  \"rna.ps\" is used.\nExisting files of the same name will be overwritten.\n"
21
22 # Options
23 option  "layout-type"  t
24 "Choose the layout algorithm. Simple radial layout if 0, or naview if 1\n\n"
25 int
26 default="1"
27 optional
28
29 option  "output-format"   o
30 "Specify output format. Available formats are: PostScript (ps), Graph Meta Language (gml),\
31  Scalable Vector Graphics (svg), and XRNA save file (xrna). Output filenames will end in\
32  \".ps\" \".gml\" \".svg\" \".ss\", respectively.\n\n"
33 string
34 typestr="ps|gml|xrna|svg"
35 default="ps"
36 optional
37
38 option  "pre"   -
39 "Add annotation macros to postscript file, and add the postscript code in \"string\" just\
40  before the code to draw the structure. This is an easy way to add annotation.\n\n"
41 string
42 typestr="string"
43 optional
44
45 option  "post"  -
46 "Same as --pre but in contrast to adding the annotation macros. E.g to mark position\
47  15 with circle use --post \"15 cmark\"\n\n"
48 string
49 typestr="string"
50 optional
51
52 text    "\nIf in doubt our program is right, nature is at fault.\nComments should be sent to\
53  rna@tbi.univie.ac.at.\n"