File: acdvalid.txt

package info (click to toggle)
emboss 5.0.0-7
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 81,332 kB
  • ctags: 25,201
  • sloc: ansic: 229,873; java: 29,051; sh: 10,636; perl: 8,714; makefile: 1,227; csh: 520; asm: 351; pascal: 237; xml: 94; modula3: 8
file content (117 lines) | stat: -rw-r--r-- 2,912 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117

                                 acdvalid 



Function

   ACD file validation

Description

   Acdvalid processes the ACD file for an EMBOSS program and reports any
   errors or warnings caused by incorrect, deprecated or obsolete syntax.

   Acdvalid does not have its own command line. Instead, it will run the
   command line of any EMBOSS program by reading its ACD file and
   processing the command line and user responses in exactly the same way
   as the true program.

   Acdvalid uses a very simple method. The first command line parameter
   is the name of the EMBOSS program to be compiled. All other command
   line parameters and qualifiers are processed by that program's ACD
   file.

Usage

   Here is a sample session with acdvalid


% acdvalid antigenic 

Command line arguments

   The first parameter is the name of the program to compile. All other
   command line parameters and qualifiers are defined for that program -
   see the documentation for the program of choice.

Output file format

   The output file is empty, but any format available to the specified
   program can be used.

Data files

   Acdvalid will use any data files specified in the ACD file of the
   specified program, but will ignore any data files that are only used
   directly by the program's code.

   EMBOSS data files are distributed with the application and stored in
   the standard EMBOSS data directory, which is defined by the EMBOSS
   environment variable EMBOSS_DATA.

   To see the available EMBOSS data files, run:

% embossdata -showall

   To fetch one of the data files (for example 'Exxx.dat') into your
   current directory for you to inspect or modify, run:

% embossdata -fetch -file Exxx.dat

   Users can provide their own data files in their own directories.
   Project specific files can be put in the current directory, or for
   tidier directory listings in a subdirectory called ".embossdata".
   Files for all EMBOSS runs can be put in the user's home directory, or
   again in a subdirectory called ".embossdata".

   The directories are searched in the following order:
     * . (your current directory)
     * .embossdata (under your current directory)
     * ~/ (your home directory)
     * ~/.embossdata

Notes

References

Warnings

   None.

Diagnostic Error Messages

Exit status

   It exits with status 0.

Known bugs

   None.

See also

   Program name              Description
   acdc         ACD compiler
   acdpretty    ACD pretty printing utility
   acdtable     Creates an HTML table from an ACD file
   acdtrace     ACD compiler on-screen trace

Author(s)

   Peter Rice (pmr  ebi.ac.uk)
   Informatics Division, European Bioinformatics Institute, Wellcome
   Trust Genome Campus, Hinxton, Cambridge CB10 1SD, UK

History

   Written 2004

Target users

   This program is intended to be used by developers of applications and
   interfaces.

Comments

   None