forked from guigolab/geneid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
139 lines (92 loc) · 3.2 KB
/
README
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
******************** geneid v.1.0. README File ********************
Summary:
A. What's geneid ?
B. Installing geneid
C. File Listing
D. Compiling geneid
E. To run geneid
F. Authors and help
***************************************
A. What's geneid ?
------------------
geneid is a program to predict genic elements as splice sites, exons
or genes, along eukaryotic DNA sequences. geneid offers also some
rudimentary support to integrate predictions for multiple sources.
The program is written in ANSI C, and runs on UNIX operating systems.
Installation, setup and usage of geneid is very easy, and there is a
range of options to configure output predictions and program behaviour.
geneid source code, compiled binaries and documentation are available
under the GNU GENERAL PUBLIC LICENSE.
Comments and questions are welcome.
***************************************
B. Installing geneid
--------------------
The geneid distribution contains several directories and files. Source
code, compiled binaries for a number of architectures and operating
systems, and documentation files are included in the distribution.
The distribution is archived and compressed in a single file using the
command tar -zcvf. The compressed file name is geneid.tar.gz (or something
similar depending on compiled binaries included). The geneid files can
be extracted following these instructions:
** UNIX:
Type:
>gzip -d geneid.tar.gz
>tar -xvf geneid.tar
** LINUX:
Type:
>tar -zxvf geneid.tar.gz
After executing these commands, the directory geneid will be created
in your working directory.
***************************************
C. File Listing
---------------
The geneid distribution contains the following files and directories:
** bin/
compiled binaries
** docs/
documentation: a short handbook.
** include/
geneid.h: The geneid header file.
** objects/
object files after compiling the source code.
** param/
Parameter files for several species.
** samples/
Test sequences.
** src/
source code of geneid program.
** GNULicense
This software is registered under GNU license.
** Makefile
This file is required to build geneidbinary file.
** README
This file.
***************************************
D. Compiling geneid
-------------------
Move into the geneid directory.
Type:
>make
to compile geneid.
This will generate the geneid executable file within the bin/ subdirectory.
Type:
>geneid -h
to test the binary file has been correctly created.
***************************************
E. To run geneid
-----------------
To run geneid type:
>geneid -P <parameter_filename> <Sequence_filename>.
Alternatively you can set the parameter file using the environment
variable GENEID.
For example,
>bin/geneid -vP param/human3iso.param samples/example1.fa
***************************************
F. Authors and help
-------------------
geneid has been written by Enrique Blanco and Roderic Guigó (IMIM-UPF).
Parameter files have been generated by Genis Parra and Francisco Camara.
geneid home page is "http://www1.imim.es/software/geneid/index.html" and
geneid distributions can be obtained through anonymous ftp to
"ftp.imim.es" in the directory "/pub/software/geneid/".
If you need help, send a message to "[email protected]".