View | Details | Raw Unified | Return to bug 74333
Collapse All | Expand All

(-)emboss/Makefile (-107 / +22 lines)
Lines 2-142 Link Here
2
# Date created:		31 July 2000
2
# Date created:		31 July 2000
3
# Whom:	      		Johann Visagie <johann@egenetics.com>
3
# Whom:	      		Johann Visagie <johann@egenetics.com>
4
#
4
#
5
# $FreeBSD: ports/biology/emboss/Makefile,v 1.40 2004/11/20 07:40:43 linimon Exp $
5
# $FreeBSD: ports/biology/emboss/Makefile,v 1.39 2004/06/23 08:20:21 vs Exp $
6
#
6
#
7
7
8
PORTNAME=	emboss
8
PORTNAME=	emboss
9
PORTVERSION=	2.4.1
9
PORTVERSION=	2.9.0
10
PORTREVISION=	3
11
CATEGORIES=	biology
10
CATEGORIES=	biology
12
MASTER_SITES=	ftp://ftp.uk.embnet.org/pub/EMBOSS/old/ \
11
MASTER_SITES=	ftp://ftp.uk.embnet.org/pub/EMBOSS/ \
13
		ftp://ftp.es.embnet.org/pub/software/emboss/EMBOSS/old/
12
		ftp://ftp.es.embnet.org/pub/software/emboss/EMBOSS/ \
14
#		ftp://ftp.ebi.ac.uk/pub/software/unix/EMBOSS/
13
		ftp://ftp.ebi.ac.uk/pub/software/unix/EMBOSS/
14
DISTNAME=	${PORTNAME:U}-${PORTVERSION}
15
DISTFILES=	${PORTNAME:U}-${PORTVERSION}${EXTRACT_SUFX}
15
DISTFILES=	${PORTNAME:U}-${PORTVERSION}${EXTRACT_SUFX}
16
DIST_SUBDIR=	${PORTNAME}
17
EXTRACT_ONLY=	${PORTNAME:U}-${PORTVERSION}${EXTRACT_SUFX}
18
16
19
MAINTAINER=	ports@FreeBSD.org
17
MAINTAINER=	fernan@iib.unsam.edu.ar
20
COMMENT=	A collection of open source tools for genetic sequence analysis
18
COMMENT=	A collection of open source tools for genetic sequence analysis
21
19
22
LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd
20
BUILD_DEPENDS=	clustalw:${PORTSDIR}/biology/clustalw \
21
		primer3:${PORTSDIR}/biology/primer3
22
LIB_DEPENDS=	gd.4:${PORTSDIR}/graphics/gd \
23
		png.5:${PORTSDIR}/graphics/png
23
24
24
USE_SUBMAKE=	yes
25
USE_SUBMAKE=	yes
25
USE_GMAKE=	yes
26
USE_GMAKE=	yes
26
GNU_CONFIGURE=	yes
27
GNU_CONFIGURE=	yes
28
USE_LIBTOOL_VER=15
27
INSTALLS_SHLIB=	yes
29
INSTALLS_SHLIB=	yes
28
USE_XLIB=	yes
30
USE_XLIB=	yes
29
USE_MOTIF=	yes
31
USE_MOTIF=	yes
30
USE_PERL5_BUILD=yes
32
USE_REINPLACE=	yes
31
PKGMESSAGE=	${WRKDIR}/pkg-message
33
PKGMESSAGE=	${WRKDIR}/pkg-message
32
34
33
.if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc)
34
.include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc"
35
.endif
36
37
CONFIGURE_ENV+=	CPPFLAGS="-I${LOCALBASE}/include" \
38
		LIBS="-L${LOCALBASE}/lib -L${X11BASE}/lib"
39
SCRIPTS_ENV+=	WRKDIRPREFIX="${WRKDIRPREFIX}" \
40
		MKDIR="${MKDIR}" RM="${RM}"
41
42
WRKSRC=		${WRKDIR}/${PORTNAME:U}-${PORTVERSION}
43
EMBASSY_WRKDIR=	${WRKSRC}/EMBASSY
44
EMNU_VERSION=	1.0.5
45
HMMER_VERSION=	2.1.1
46
MEME_VERSION=	2.3.1
47
MSE_VERSION=	0.0.4
48
TOPO_VERSION=	0.1
49
PHYLIP_VERSION=	3.573c
50
DOC_DIRS=	doc/manuals doc/tutorials doc/programs/text doc/programs/html
35
DOC_DIRS=	doc/manuals doc/tutorials doc/programs/text doc/programs/html
51
CONFIG_FILE=	${WRKSRC}/emboss/emboss.default.template
36
CONFIG_FILE=	${WRKSRC}/emboss/emboss.default.template
52
37
53
.for app in EMNU HMMER MEME MSE PHYLIP TOPO
54
SCRIPTS_ENV+=	${app}_VERSION="${${app}_VERSION}"
55
.if defined(WITH_${app})
56
APPLIST+=	${app}
57
${app}_WRKSRC=	${EMBASSY_WRKDIR}/${app}-${${app}_VERSION}
58
${app}_DISTFILE=${app}-${${app}_VERSION}${EXTRACT_SUFX}
59
DISTFILES+=	${${app}_DISTFILE}
60
PLIST_${app}=	""
61
.else
62
PLIST_${app}=	"@comment "
63
.endif
64
PLIST_SUB+=	PLIST_${app}=${PLIST_${app}}
65
.endfor
66
67
# Jemboss support is a work in progress.
68
#
69
#.if defined(WITH_JEMBOSS)
70
#USE_JAVA=	1.3+
71
#CONFIGURE_ARGS+=	--with-java=${JAVA_HOME}/include \
72
#			--with-javaos=${JAVA_HOME}/include/${JAVA_OS:L}
73
#CONFIGURE_ENV+=	PATH=${PATH}:${JAVA_HOME}/bin
74
#MAKE_ENV+=	PATH=${PATH}:${JAVA_HOME}/bin
75
#JEMBOSS_WRKSRC=	${WRKSRC}/jemboss
76
#.endif
77
78
pre-fetch:
79
	@ ${SETENV} ${SCRIPTS_ENV} ${SH} ${SCRIPTDIR}/configure.${PORTNAME}
80
81
post-extract:
82
.for app in ${APPLIST}
83
	@ ${MKDIR} ${EMBASSY_WRKDIR}
84
	@ cd ${EMBASSY_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} \
85
	  ${_DISTDIR}/${${app}_DISTFILE} ${EXTRACT_AFTER_ARGS}
86
	@ if [ `id -u` = 0 ]; then \
87
	    ${CHMOD} -R ug-s ${${app}_WRKSRC}; \
88
	    ${CHOWN} -R 0:0 ${${app}_WRKSRC}; \
89
	  fi
90
.endfor
91
92
post-patch:
38
post-patch:
39
.if !defined(NOPORTDOCS)
93
.for DIR in ${DOC_DIRS}
40
.for DIR in ${DOC_DIRS}
94
	@ ${PERL} -pi.orig -e \
41
	${REINPLACE_CMD} -e \
95
	  's#\$$\(prefix\)/share/\$$\(PACKAGE\)/doc#\$$\(datadir\)/doc/\$$\(PACKAGE\)#' \
42
	  's#$$(prefix)/share/$$(PACKAGE)/doc#$$(datadir)/doc/$$(PACKAGE)#' \
96
	  ${WRKSRC}/${DIR}/Makefile.in
43
	  ${WRKSRC}/${DIR}/Makefile.in
97
.endfor
44
.endfor
98
45
.endif
99
post-configure:
100
.for app in ${APPLIST}
101
	@ cd ${${app}_WRKSRC} && \
102
	  ${SETENV} CC="${CC}" CXX="${CXX}" CFLAGS="${CFLAGS}" \
103
	  CXXFLAGS="${CXXFLAGS}" \
104
	  INSTALL="/usr/bin/install -c -o ${BINOWN} -g ${BINGRP}" \
105
	  INSTALL_DATA="${INSTALL_DATA}" \
106
	  INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
107
	  INSTALL_SCRIPT="${INSTALL_SCRIPT}" \
108
	  ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}
109
.endfor
110
111
post-build:
112
.for app in ${APPLIST}
113
	@ cd ${${app}_WRKSRC} && \
114
	  ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} \
115
	  ${MAKE_ARGS}
116
.endfor
117
#.if defined(WITH_JEMBOSS)
118
#	@ cd ${JEMBOSS_WRKSRC} && \
119
#	  ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} \
120
#	  ${MAKE_ARGS}
121
#.endif
122
46
123
post-install:
47
post-install:
124
.for app in ${APPLIST}
48
	@ cd ${WRKSRC} && \
125
	@ cd ${${app}_WRKSRC} && \
49
	${SED} -e 's#%%PREFIX%%#${PREFIX}#' \
126
	  ${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} \
50
	${CONFIG_FILE} > ${PREFIX}/etc/emboss.default.sample && \
127
	  ${MAKE_ARGS} ${INSTALL_TARGET}
51
	${CHOWN} ${SHAREOWN}:${SHAREGRP} ${PREFIX}/etc/emboss.default.sample
128
.endfor
52
	@ ${SED} -e 's#%%PREFIX%%#${PREFIX}#' ${.CURDIR}/pkg-message > ${PKGMESSAGE}
129
	@ ${PERL} -pe 's#%%PREFIX%%#${PREFIX}#' \
130
	  ${CONFIG_FILE} > ${PREFIX}/etc/emboss.default.sample && \
131
	  ${CHOWN} ${SHAREOWN}:${SHAREGRP} \
132
	  ${PREFIX}/etc/emboss.default.sample
133
	@ ${PERL} -pe 's#%%PREFIX%%#${PREFIX}#' \
134
	  pkg-message > ${PKGMESSAGE}
135
.if !defined(BATCH)
53
.if !defined(BATCH)
136
	@ ${CAT} ${PKGMESSAGE}
54
	@ ${CAT} ${PKGMESSAGE}
137
.endif
55
.endif
138
139
post-clean:
140
	@ ${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc
141
56
142
.include <bsd.port.mk>
57
.include <bsd.port.mk>
(-)emboss/distinfo (-7 / +2 lines)
Lines 1-7 Link Here
1
MD5 (emboss/EMBOSS-2.4.1.tar.gz) = f8e8f053362346d45b696ad6d0ec4aad
1
MD5 (EMBOSS-2.9.0.tar.gz) = c6facfd1750e88a0c8b7bb7ac826d472
2
MD5 (emboss/EMNU-1.0.5.tar.gz) = 6ba42bfd8484b313f39ef81e03141f66
2
SIZE (EMBOSS-2.9.0.tar.gz) = 14479274
3
MD5 (emboss/HMMER-2.1.1.tar.gz) = aff42ea8ced9c049f2cc4f84a10efd21
4
MD5 (emboss/MEME-2.3.1.tar.gz) = 92302d22ccb94f9e77c1bb2ca35c0f9c
5
MD5 (emboss/MSE-0.0.4.tar.gz) = fdfdb7f4d92f67323b14b7030a1135c9
6
MD5 (emboss/PHYLIP-3.573c.tar.gz) = 5fa81a3cfb4f502c627a30428d49a084
7
MD5 (emboss/TOPO-0.1.tar.gz) = a5131f2e0d58e06ce071250b62cbe65a
(-)emboss/files/patch-aa (-5 lines)
Lines 1-26 Link Here
1
Add ${PREFIX}/etc as an acceptable location for emboss.default.  (I'm still
2
waiting for this to be incorporated into an official release of EMBOSS.)
3
4
The port installs ${PREFIX}/etc/emboss.default.sample
5
(-)emboss/files/patch-ajax::ajjava.c (-11 lines)
Lines 1-11 Link Here
1
--- ajax/ajjava.c.orig	Thu May  2 22:06:08 2002
2
+++ ajax/ajjava.c	Sun May 26 09:14:20 2002
3
@@ -75,7 +75,7 @@
4
 #endif
5
 
6
 #ifndef __ppc__
7
-#include <crypt.h>
8
+#include <unistd.h>
9
 #endif
10
 
11
 
(-)emboss/files/patch-configure (-11 lines)
Lines 1-11 Link Here
1
--- configure.orig	Mon Jan 22 23:28:17 2001
2
+++ configure	Thu Jan 25 19:07:33 2001
3
@@ -1473,7 +1473,7 @@
4
 
5
 
6
 
7
-AJAX_FIXED_ROOT="\\\"`pwd`/emboss\\\""
8
+AJAX_FIXED_ROOT="\\\"${datadir}/${PACKAGE}\\\""
9
 
10
 #AC_PROG_CXX
11
 for ac_prog in mawk gawk nawk awk
(-)emboss/files/patch-emboss-emboss.default.template (-38 lines)
Lines 1-38 Link Here
1
--- emboss/emboss.default.template.orig	Thu May 24 19:36:39 2001
2
+++ emboss/emboss.default.template	Wed May 30 10:23:48 2001
3
@@ -1,9 +1,31 @@
4
-#SET emboss_tempdata name_of_emboss_test_database_directory
5
+#####################################################
6
+### Configuration options for FreeBSD EMBOSS port ###
7
+#####################################################
8
 
9
-# Logfile - set this to a file that any user can append to
10
-# and EMBOSS applications will automatically write log information
11
+# The directory where EMBOSS expects to find run-time
12
+# databases.  This is the compiled-in default - change
13
+# only if you know what you're doing!
14
+#
15
+#SET emboss_data %%PREFIX%%/share/EMBOSS/data
16
 
17
-#SET emboss_logfile /packages/emboss/emboss/log
18
+# This is an alias which is internal to this
19
+# configuration file and is set here merely as a
20
+# convenience.  It points to the location where you
21
+# have placed your local databases (this will differ
22
+# from site to site).
23
+#
24
+SET emboss_tempdata %%PREFIX%%/share/EMBOSS/databases
25
+
26
+# Logfile.  If this is uncommented and set to a file
27
+# that any user can append to, EMBOSS applications
28
+# will automatically log usage information.
29
+#
30
+#SET emboss_logfile /var/log/emboss.log
31
+
32
+
33
+###########################################
34
+### Configuration options for databases ###
35
+###########################################
36
 
37
 # swissprot (Puffer fish entries)
38
 # =========
(-)emboss/pkg-message (-1 / +2 lines)
Lines 15-21 Link Here
15
system-wide emboss.default.
15
system-wide emboss.default.
16
16
17
Online EMBOSS documentation is available at:
17
Online EMBOSS documentation is available at:
18
	http://www.uk.embnet.org/Software/EMBOSS/general.html
18
	http://www.uk.embnet.org/Software/EMBOSS/userdoc.html
19
	http://www.uk.embnet.org/Software/EMBOSS/Doc/
19
	http://www.uk.embnet.org/Software/EMBOSS/Doc/
20
  http://emboss.sourceforge.net/docs/
20
21
21
--------------------------------------------------------------------------
22
--------------------------------------------------------------------------
(-)emboss/pkg-plist (-995 / +1071 lines)
Lines 1-94 Link Here
1
%%PLIST_EMNU%%bin/emnu
1
bin/aaindexextract
2
%%PLIST_EMNU%%share/EMBOSS/acd/emnu.acd
3
%%PLIST_HMMER%%bin/ealistat
4
%%PLIST_HMMER%%bin/ehmmalign
5
%%PLIST_HMMER%%bin/ehmmbuild
6
%%PLIST_HMMER%%bin/ehmmcalibrate
7
%%PLIST_HMMER%%bin/ehmmconvert
8
%%PLIST_HMMER%%bin/ehmmemit
9
%%PLIST_HMMER%%bin/ehmmfetch
10
%%PLIST_HMMER%%bin/ehmmindex
11
%%PLIST_HMMER%%bin/ehmmpfam
12
%%PLIST_HMMER%%bin/ehmmsearch
13
%%PLIST_HMMER%%lib/libhmmer.a
14
%%PLIST_HMMER%%lib/libhmmer.la
15
%%PLIST_HMMER%%lib/libhmmer.so
16
%%PLIST_HMMER%%lib/libhmmer.so.2
17
%%PLIST_HMMER%%share/EMBOSS/acd/ealistat.acd
18
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmalign.acd
19
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmbuild.acd
20
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmcalibrate.acd
21
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmconvert.acd
22
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmemit.acd
23
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmfetch.acd
24
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmindex.acd
25
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmpfam.acd
26
%%PLIST_HMMER%%share/EMBOSS/acd/ehmmsearch.acd
27
%%PLIST_MEME%%bin/meme
28
%%PLIST_MEME%%lib/libmeme.a
29
%%PLIST_MEME%%lib/libmeme.la
30
%%PLIST_MEME%%lib/libmeme.so
31
%%PLIST_MEME%%lib/libmeme.so.2
32
%%PLIST_MEME%%share/EMBOSS/acd/meme.acd
33
%%PLIST_MSE%%bin/mse
34
%%PLIST_MSE%%lib/libckit.a
35
%%PLIST_MSE%%lib/libckit.la
36
%%PLIST_MSE%%lib/libckit.so
37
%%PLIST_MSE%%lib/libckit.so.1
38
%%PLIST_MSE%%share/EMBOSS/acd/mse.acd
39
%%PLIST_PHYLIP%%bin/eclique
40
%%PLIST_PHYLIP%%bin/econsense
41
%%PLIST_PHYLIP%%bin/econtml
42
%%PLIST_PHYLIP%%bin/econtrast
43
%%PLIST_PHYLIP%%bin/ednacomp
44
%%PLIST_PHYLIP%%bin/ednadist
45
%%PLIST_PHYLIP%%bin/ednainvar
46
%%PLIST_PHYLIP%%bin/ednaml
47
%%PLIST_PHYLIP%%bin/ednamlk
48
%%PLIST_PHYLIP%%bin/ednapars
49
%%PLIST_PHYLIP%%bin/ednapenny
50
%%PLIST_PHYLIP%%bin/edollop
51
%%PLIST_PHYLIP%%bin/edolpenny
52
%%PLIST_PHYLIP%%bin/efactor
53
%%PLIST_PHYLIP%%bin/efitch
54
%%PLIST_PHYLIP%%bin/egendist
55
%%PLIST_PHYLIP%%bin/ekitsch
56
%%PLIST_PHYLIP%%bin/emix
57
%%PLIST_PHYLIP%%bin/eneighbor
58
%%PLIST_PHYLIP%%bin/epenny
59
%%PLIST_PHYLIP%%bin/eprotdist
60
%%PLIST_PHYLIP%%bin/eprotpars
61
%%PLIST_PHYLIP%%bin/erestml
62
%%PLIST_PHYLIP%%bin/eseqboot
63
%%PLIST_PHYLIP%%share/EMBOSS/acd/eclique.acd
64
%%PLIST_PHYLIP%%share/EMBOSS/acd/econsense.acd
65
%%PLIST_PHYLIP%%share/EMBOSS/acd/econtml.acd
66
%%PLIST_PHYLIP%%share/EMBOSS/acd/econtrast.acd
67
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednacomp.acd
68
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednadist.acd
69
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednainvar.acd
70
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednaml.acd
71
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednamlk.acd
72
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednapars.acd
73
%%PLIST_PHYLIP%%share/EMBOSS/acd/ednapenny.acd
74
%%PLIST_PHYLIP%%share/EMBOSS/acd/edollop.acd
75
%%PLIST_PHYLIP%%share/EMBOSS/acd/edolpenny.acd
76
%%PLIST_PHYLIP%%share/EMBOSS/acd/efactor.acd
77
%%PLIST_PHYLIP%%share/EMBOSS/acd/efitch.acd
78
%%PLIST_PHYLIP%%share/EMBOSS/acd/egendist.acd
79
%%PLIST_PHYLIP%%share/EMBOSS/acd/ekitsch.acd
80
%%PLIST_PHYLIP%%share/EMBOSS/acd/emix.acd
81
%%PLIST_PHYLIP%%share/EMBOSS/acd/eneighbor.acd
82
%%PLIST_PHYLIP%%share/EMBOSS/acd/epenny.acd
83
%%PLIST_PHYLIP%%share/EMBOSS/acd/eprotdist.acd
84
%%PLIST_PHYLIP%%share/EMBOSS/acd/eprotpars.acd
85
%%PLIST_PHYLIP%%share/EMBOSS/acd/erestml.acd
86
%%PLIST_PHYLIP%%share/EMBOSS/acd/eseqboot.acd
87
%%PLIST_TOPO%%bin/topo
88
%%PLIST_TOPO%%share/EMBOSS/acd/topo.acd
89
bin/abiview
2
bin/abiview
90
bin/acdc
3
bin/acdc
91
bin/alignwrap
4
bin/acdpretty
5
bin/acdtable
6
bin/acdtrace
7
bin/acdvalid
92
bin/antigenic
8
bin/antigenic
93
bin/backtranseq
9
bin/backtranseq
94
bin/banana
10
bin/banana
Lines 104-110 Link Here
104
bin/coderet
20
bin/coderet
105
bin/compseq
21
bin/compseq
106
bin/cons
22
bin/cons
107
bin/contacts
108
bin/cpgplot
23
bin/cpgplot
109
bin/cpgreport
24
bin/cpgreport
110
bin/cusp
25
bin/cusp
Lines 117-127 Link Here
117
bin/dbigcg
32
bin/dbigcg
118
bin/degapseq
33
bin/degapseq
119
bin/descseq
34
bin/descseq
120
bin/dichet
121
bin/diffseq
35
bin/diffseq
122
bin/digest
36
bin/digest
123
bin/distmat
37
bin/distmat
124
bin/domainer
125
bin/dotmatcher
38
bin/dotmatcher
126
bin/dotpath
39
bin/dotpath
127
bin/dottup
40
bin/dottup
Lines 132-137 Link Here
132
bin/emma
45
bin/emma
133
bin/emowse
46
bin/emowse
134
bin/entret
47
bin/entret
48
bin/epestfind
49
bin/eprimer3
135
bin/equicktandem
50
bin/equicktandem
136
bin/est2genome
51
bin/est2genome
137
bin/etandem
52
bin/etandem
Lines 151-156 Link Here
151
bin/infoalign
66
bin/infoalign
152
bin/infoseq
67
bin/infoseq
153
bin/isochore
68
bin/isochore
69
bin/jembossctl
154
bin/lindna
70
bin/lindna
155
bin/listor
71
bin/listor
156
bin/marscan
72
bin/marscan
Lines 160-173 Link Here
160
bin/megamerger
76
bin/megamerger
161
bin/merger
77
bin/merger
162
bin/msbar
78
bin/msbar
79
bin/mwcontam
163
bin/mwfilter
80
bin/mwfilter
164
bin/needle
81
bin/needle
165
bin/newcpgreport
82
bin/newcpgreport
166
bin/newcpgseek
83
bin/newcpgseek
167
bin/newseq
84
bin/newseq
168
bin/noreturn
169
bin/notseq
85
bin/notseq
170
bin/nrscope
86
bin/noreturn
171
bin/nthseq
87
bin/nthseq
172
bin/octanol
88
bin/octanol
173
bin/oddcomp
89
bin/oddcomp
Lines 195-201 Link Here
195
bin/prophet
111
bin/prophet
196
bin/prosextract
112
bin/prosextract
197
bin/pscan
113
bin/pscan
198
bin/psiblasts
114
bin/psiphi
199
bin/rebaseextract
115
bin/rebaseextract
200
bin/recoder
116
bin/recoder
201
bin/redata
117
bin/redata
Lines 203-211 Link Here
203
bin/restover
119
bin/restover
204
bin/restrict
120
bin/restrict
205
bin/revseq
121
bin/revseq
206
bin/runJemboss.csh
207
bin/scopalign
208
bin/scope
209
bin/seealso
122
bin/seealso
210
bin/seqmatchall
123
bin/seqmatchall
211
bin/seqret
124
bin/seqret
Lines 217-360 Link Here
217
bin/showseq
130
bin/showseq
218
bin/shuffleseq
131
bin/shuffleseq
219
bin/sigcleave
132
bin/sigcleave
220
bin/siggen
221
bin/sigscan
222
bin/silent
133
bin/silent
134
bin/sirna
135
bin/sixpack
136
bin/skipseq
223
bin/splitter
137
bin/splitter
224
bin/stretcher
138
bin/stretcher
225
bin/stssearch
139
bin/stssearch
226
bin/supermatcher
140
bin/supermatcher
227
bin/swissparse
228
bin/syco
141
bin/syco
142
bin/tcode
229
bin/textsearch
143
bin/textsearch
230
bin/tfextract
144
bin/tfextract
231
bin/tfm
145
bin/tfm
232
bin/tfscan
146
bin/tfscan
233
bin/tmap
147
bin/tmap
148
bin/tranalign
234
bin/transeq
149
bin/transeq
235
bin/trimest
150
bin/trimest
236
bin/trimseq
151
bin/trimseq
152
bin/twofeat
153
bin/union
237
bin/vectorstrip
154
bin/vectorstrip
238
bin/water
155
bin/water
156
bin/whichdb
239
bin/wobble
157
bin/wobble
240
bin/wordcount
158
bin/wordcount
241
bin/wordmatch
159
bin/wordmatch
242
bin/wossname
160
bin/wossname
161
bin/yank
162
bin/runJemboss.csh
243
etc/emboss.default.sample
163
etc/emboss.default.sample
244
lib/libajax.a
164
include/drivers.h
245
lib/libajax.la
165
include/pdf.h
246
lib/libajax.so
166
include/plcore.h
167
include/plevent.h
168
include/plplotP.h
169
include/plxwd.h
170
include/metadefs.h
171
include/plConfig.h
172
include/pldebug.h
173
include/plplot.h
174
include/plstrm.h
175
include/plDevs.h
176
include/ajax.h
177
include/ajarch.h
178
include/ajdefine.h
179
include/ajacd.h
180
include/ajalign.h
181
include/ajarr.h
182
include/ajassert.h
183
include/ajbase.h
184
include/ajcall.h
185
include/ajcod.h
186
include/ajdan.h
187
include/ajdmx.h
188
include/ajdomain.h
189
include/ajexcept.h
190
include/ajfeat.h
191
include/ajfeatdata.h
192
include/ajfile.h
193
include/ajfmt.h
194
include/ajgraph.h
195
include/ajgraphxml.h
196
include/ajgraphstruct.h
197
include/ajhist.h
198
include/ajjava.h
199
include/ajlist.h
200
include/ajmath.h
201
include/ajmatrices.h
202
include/ajmem.h
203
include/ajmess.h
204
include/ajnam.h
205
include/ajnexus.h
206
include/ajpdb.h
207
include/ajpdbio.h
208
include/ajphylo.h
209
include/ajrange.h
210
include/ajreg.h
211
include/ajreport.h
212
include/ajseq.h
213
include/ajseqabi.h
214
include/ajseqdata.h
215
include/ajseqdb.h
216
include/ajseqread.h
217
include/ajseqtype.h
218
include/ajseqwrite.h
219
include/ajsort.h
220
include/ajstr.h
221
include/ajsys.h
222
include/ajtable.h
223
include/ajtime.h
224
include/ajtranslate.h
225
include/ajtree.h
226
include/ajutil.h
227
include/ajvector.h
228
include/pcre.h
229
include/pcre_chartables.c
230
include/pcre_config.h
231
include/pcre_get.c
232
include/pcre_printint.c
233
include/pcre_internal.h
234
include/pcreposix.h
235
include/emboss.h
236
include/embaln.h
237
include/embcom.h
238
include/embcons.h
239
include/embdata.h
240
include/embdbi.h
241
include/embdmx.h
242
include/embest.h
243
include/embexit.h
244
include/embgotoh.h
245
include/embgroup.h
246
include/embiep.h
247
include/embindex.h
248
include/embinit.h
249
include/embmat.h
250
include/embmisc.h
251
include/embmol.h
252
include/embnmer.h
253
include/embpat.h
254
include/embprop.h
255
include/embpdb.h
256
include/embdomain.h
257
include/embsig.h
258
include/embread.h
259
include/embshow.h
260
include/embword.h
261
lib/libplplot.so.5
262
lib/libplplot.so
263
lib/libplplot.a
247
lib/libajax.so.1
264
lib/libajax.so.1
248
lib/libajaxg.a
265
lib/libajax.so
249
lib/libajaxg.la
266
lib/libajax.a
250
lib/libajaxg.so
251
lib/libajaxg.so.1
267
lib/libajaxg.so.1
252
lib/libnucleus.a
268
lib/libajaxg.so
253
lib/libnucleus.la
269
lib/libajaxg.a
254
lib/libnucleus.so
255
lib/libnucleus.so.1
270
lib/libnucleus.so.1
256
lib/libplplot.a
271
lib/libnucleus.so
257
lib/libplplot.la
272
lib/libnucleus.a
258
lib/libplplot.so
273
%%PORTDOCS%%DOCSDIR%%/manuals/admin.sty
259
lib/libplplot.so.5
274
%%PORTDOCS%%DOCSDIR%%/manuals/admin.tex
260
share/EMBOSS/acd/abiview.acd
275
%%PORTDOCS%%DOCSDIR%%/manuals/admin.aux
261
share/EMBOSS/acd/ajbad.acd
276
%%PORTDOCS%%DOCSDIR%%/manuals/admin.dvi
262
share/EMBOSS/acd/ajfeatest.acd
277
%%PORTDOCS%%DOCSDIR%%/manuals/admin.log
263
share/EMBOSS/acd/ajtest.acd
278
%%PORTDOCS%%DOCSDIR%%/manuals/admin.pdf
264
share/EMBOSS/acd/alignwrap.acd
279
%%PORTDOCS%%DOCSDIR%%/manuals/admin.ps
265
share/EMBOSS/acd/antigenic.acd
280
%%PORTDOCS%%DOCSDIR%%/manuals/admin.toc
266
share/EMBOSS/acd/backtranseq.acd
281
%%PORTDOCS%%DOCSDIR%%/manuals/adminguide.tar.gz
267
share/EMBOSS/acd/banana.acd
282
%%PORTDOCS%%DOCSDIR%%/manuals/domainatrix.doc
268
share/EMBOSS/acd/biosed.acd
283
%%PORTDOCS%%DOCSDIR%%/manuals/program.ps.gz
269
share/EMBOSS/acd/btwisted.acd
284
%%PORTDOCS%%DOCSDIR%%/manuals/EMBOSS-FreeBSD-HOWTO.txt
270
share/EMBOSS/acd/cai.acd
285
%%PORTDOCS%%DOCSDIR%%/manuals/emboss_qg.pdf
271
share/EMBOSS/acd/chaos.acd
286
%%PORTDOCS%%DOCSDIR%%/manuals/emboss_qg.ps
272
share/EMBOSS/acd/charge.acd
287
%%PORTDOCS%%DOCSDIR%%/manuals/emboss.sty
273
share/EMBOSS/acd/checktrans.acd
288
%%PORTDOCS%%DOCSDIR%%/manuals/fdl.txt
274
share/EMBOSS/acd/chips.acd
289
%%PORTDOCS%%DOCSDIR%%/programs/html/lindna.html
275
share/EMBOSS/acd/cirdna.acd
290
%%PORTDOCS%%DOCSDIR%%/programs/html/listor.html
276
share/EMBOSS/acd/codcmp.acd
291
%%PORTDOCS%%DOCSDIR%%/programs/html/marscan.html
277
share/EMBOSS/acd/coderet.acd
292
%%PORTDOCS%%DOCSDIR%%/programs/html/maskfeat.html
278
share/EMBOSS/acd/codes.english
293
%%PORTDOCS%%DOCSDIR%%/programs/html/maskseq.html
279
share/EMBOSS/acd/complex.acd
294
%%PORTDOCS%%DOCSDIR%%/programs/html/matcher.html
280
share/EMBOSS/acd/compseq.acd
295
%%PORTDOCS%%DOCSDIR%%/programs/html/megamerger.html
281
share/EMBOSS/acd/cons.acd
296
%%PORTDOCS%%DOCSDIR%%/programs/html/merger.html
282
share/EMBOSS/acd/contacts.acd
297
%%PORTDOCS%%DOCSDIR%%/programs/html/mix.html
283
share/EMBOSS/acd/corbatest.acd
298
%%PORTDOCS%%DOCSDIR%%/programs/html/msbar.html
284
share/EMBOSS/acd/cpgplot.acd
299
%%PORTDOCS%%DOCSDIR%%/programs/html/mse.html
285
share/EMBOSS/acd/cpgreport.acd
300
%%PORTDOCS%%DOCSDIR%%/programs/html/mwcontam.html
286
share/EMBOSS/acd/cusp.acd
301
%%PORTDOCS%%DOCSDIR%%/programs/html/mwfilter.html
287
share/EMBOSS/acd/cutgextract.acd
302
%%PORTDOCS%%DOCSDIR%%/programs/html/needle.html
288
share/EMBOSS/acd/cutseq.acd
303
%%PORTDOCS%%DOCSDIR%%/programs/html/neighbor.html
289
share/EMBOSS/acd/dan.acd
304
%%PORTDOCS%%DOCSDIR%%/programs/html/newcpgreport.html
290
share/EMBOSS/acd/dbiblast.acd
305
%%PORTDOCS%%DOCSDIR%%/programs/html/newcpgseek.html
291
share/EMBOSS/acd/dbifasta.acd
306
%%PORTDOCS%%DOCSDIR%%/programs/html/newseq.html
292
share/EMBOSS/acd/dbiflat.acd
307
%%PORTDOCS%%DOCSDIR%%/programs/html/noreturn.html
293
share/EMBOSS/acd/dbigcg.acd
308
%%PORTDOCS%%DOCSDIR%%/programs/html/notseq.html
294
share/EMBOSS/acd/degapseq.acd
309
%%PORTDOCS%%DOCSDIR%%/programs/html/nthseq.html
295
share/EMBOSS/acd/demoalign.acd
310
%%PORTDOCS%%DOCSDIR%%/programs/html/penny.html
296
share/EMBOSS/acd/demofeatures.acd
311
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_2d_structure_group.html
297
share/EMBOSS/acd/demolist.acd
312
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_codon_usage_group.html
298
share/EMBOSS/acd/demoreport.acd
313
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_codon_usage_nucleic_gene_finding_group.html
299
share/EMBOSS/acd/demosequence.acd
314
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_composition_group.html
300
share/EMBOSS/acd/demostring.acd
315
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_cpg_islands_group.html
301
share/EMBOSS/acd/demotable.acd
316
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_gene_finding_group.html
302
share/EMBOSS/acd/descseq.acd
317
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_motifs_group.html
303
share/EMBOSS/acd/dichet.acd
318
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_mutation_group.html
304
share/EMBOSS/acd/diffseq.acd
319
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_primers_group.html
305
share/EMBOSS/acd/digest.acd
320
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_profiles_group.html
306
share/EMBOSS/acd/distmat.acd
321
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_repeats_group.html
307
share/EMBOSS/acd/domainer.acd
322
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_restriction_group.html
308
share/EMBOSS/acd/dotmatcher.acd
323
%%PORTDOCS%%DOCSDIR%%/programs/html/octanol.html
309
share/EMBOSS/acd/dotpath.acd
324
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_transcription_group.html
310
share/EMBOSS/acd/dottup.acd
325
%%PORTDOCS%%DOCSDIR%%/programs/html/nucleic_translation_group.html
311
share/EMBOSS/acd/dreg.acd
326
%%PORTDOCS%%DOCSDIR%%/programs/html/oddcomp.html
312
share/EMBOSS/acd/einverted.acd
327
%%PORTDOCS%%DOCSDIR%%/programs/html/palindrome.html
313
share/EMBOSS/acd/embossdata.acd
328
%%PORTDOCS%%DOCSDIR%%/programs/html/pasteseq.html
314
share/EMBOSS/acd/embossversion.acd
329
%%PORTDOCS%%DOCSDIR%%/programs/html/patmatdb.html
315
share/EMBOSS/acd/emma.acd
330
%%PORTDOCS%%DOCSDIR%%/programs/html/patmatmotifs.html
316
share/EMBOSS/acd/emowse.acd
331
%%PORTDOCS%%DOCSDIR%%/programs/html/pepcoil.html
317
share/EMBOSS/acd/entrails.acd
332
%%PORTDOCS%%DOCSDIR%%/programs/html/pepinfo.html
318
share/EMBOSS/acd/entret.acd
333
%%PORTDOCS%%DOCSDIR%%/programs/html/pepnet.html
319
share/EMBOSS/acd/eprimer3.acd
334
%%PORTDOCS%%DOCSDIR%%/programs/html/pepstats.html
320
share/EMBOSS/acd/equicktandem.acd
335
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwheel.html
321
share/EMBOSS/acd/est2genome.acd
336
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwindow.html
322
share/EMBOSS/acd/etandem.acd
337
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwindowall.html
323
share/EMBOSS/acd/extractfeat.acd
338
%%PORTDOCS%%DOCSDIR%%/programs/html/pestfind.html
324
share/EMBOSS/acd/extractseq.acd
339
%%PORTDOCS%%DOCSDIR%%/programs/html/phylogeny_distance_matrix_group.html
325
share/EMBOSS/acd/findkm.acd
340
%%PORTDOCS%%DOCSDIR%%/programs/html/phylogeny_group.html
326
share/EMBOSS/acd/freak.acd
341
%%PORTDOCS%%DOCSDIR%%/programs/html/plotcon.html
327
share/EMBOSS/acd/fuzznuc.acd
342
%%PORTDOCS%%DOCSDIR%%/programs/html/plotorf.html
328
share/EMBOSS/acd/fuzzpro.acd
343
%%PORTDOCS%%DOCSDIR%%/programs/html/polydot.html
329
share/EMBOSS/acd/fuzztran.acd
344
%%PORTDOCS%%DOCSDIR%%/programs/html/preg.html
330
share/EMBOSS/acd/garnier.acd
345
%%PORTDOCS%%DOCSDIR%%/programs/html/prettyplot.html
331
share/EMBOSS/acd/geecee.acd
346
%%PORTDOCS%%DOCSDIR%%/programs/html/prettyseq.html
332
share/EMBOSS/acd/getorf.acd
347
%%PORTDOCS%%DOCSDIR%%/programs/html/primersearch.html
333
share/EMBOSS/acd/helixturnhelix.acd
348
%%PORTDOCS%%DOCSDIR%%/programs/html/printsextract.html
334
share/EMBOSS/acd/histogramtest.acd
349
%%PORTDOCS%%DOCSDIR%%/programs/html/profit.html
335
share/EMBOSS/acd/hmoment.acd
350
%%PORTDOCS%%DOCSDIR%%/programs/html/prophecy.html
336
share/EMBOSS/acd/iep.acd
351
%%PORTDOCS%%DOCSDIR%%/programs/html/prophet.html
337
share/EMBOSS/acd/infoalign.acd
352
%%PORTDOCS%%DOCSDIR%%/programs/html/prosextract.html
338
share/EMBOSS/acd/infoseq.acd
353
%%PORTDOCS%%DOCSDIR%%/programs/html/protdist.html
339
share/EMBOSS/acd/interface.acd
354
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_2d_structure_group.html
340
share/EMBOSS/acd/isochore.acd
355
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_3d_structure_group.html
341
share/EMBOSS/acd/lindna.acd
356
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_composition_group.html
342
share/EMBOSS/acd/listor.acd
357
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_motifs_group.html
343
share/EMBOSS/acd/marscan.acd
358
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_mutation_group.html
344
share/EMBOSS/acd/maskfeat.acd
359
%%PORTDOCS%%DOCSDIR%%/programs/html/pscan.html
345
share/EMBOSS/acd/maskseq.acd
360
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_profiles_group.html
346
share/EMBOSS/acd/matcher.acd
361
%%PORTDOCS%%DOCSDIR%%/programs/html/protein_sequence_alignment_group.html
362
%%PORTDOCS%%DOCSDIR%%/programs/html/rebaseextract.html
363
%%PORTDOCS%%DOCSDIR%%/programs/html/recoder.html
364
%%PORTDOCS%%DOCSDIR%%/programs/html/redata.html
365
%%PORTDOCS%%DOCSDIR%%/programs/html/remap.html
366
%%PORTDOCS%%DOCSDIR%%/programs/html/restml.html
367
%%PORTDOCS%%DOCSDIR%%/programs/html/restover.html
368
%%PORTDOCS%%DOCSDIR%%/programs/html/restrict.html
369
%%PORTDOCS%%DOCSDIR%%/programs/html/revseq.html
370
%%PORTDOCS%%DOCSDIR%%/programs/html/scope.html
371
%%PORTDOCS%%DOCSDIR%%/programs/html/seealso.html
372
%%PORTDOCS%%DOCSDIR%%/programs/html/seqboot.html
373
%%PORTDOCS%%DOCSDIR%%/programs/html/seqmatchall.html
374
%%PORTDOCS%%DOCSDIR%%/programs/html/seqret.html
375
%%PORTDOCS%%DOCSDIR%%/programs/html/seqretsplit.html
376
%%PORTDOCS%%DOCSDIR%%/programs/html/showalign.html
377
%%PORTDOCS%%DOCSDIR%%/programs/html/showdb.html
378
%%PORTDOCS%%DOCSDIR%%/programs/html/showfeat.html
379
%%PORTDOCS%%DOCSDIR%%/programs/html/showorf.html
380
%%PORTDOCS%%DOCSDIR%%/programs/html/showseq.html
381
%%PORTDOCS%%DOCSDIR%%/programs/html/shuffleseq.html
382
%%PORTDOCS%%DOCSDIR%%/programs/html/sigcleave.html
383
%%PORTDOCS%%DOCSDIR%%/programs/html/silent.html
384
%%PORTDOCS%%DOCSDIR%%/programs/html/sirna.html
385
%%PORTDOCS%%DOCSDIR%%/programs/html/sixpack.html
386
%%PORTDOCS%%DOCSDIR%%/programs/html/skipseq.html
387
%%PORTDOCS%%DOCSDIR%%/programs/html/splitter.html
388
%%PORTDOCS%%DOCSDIR%%/programs/html/stretcher.html
389
%%PORTDOCS%%DOCSDIR%%/programs/html/stssearch.html
390
%%PORTDOCS%%DOCSDIR%%/programs/html/supermatcher.html
391
%%PORTDOCS%%DOCSDIR%%/programs/html/syco.html
392
%%PORTDOCS%%DOCSDIR%%/programs/html/tcode.html
393
%%PORTDOCS%%DOCSDIR%%/programs/html/textsearch.html
394
%%PORTDOCS%%DOCSDIR%%/programs/html/tfextract.html
395
%%PORTDOCS%%DOCSDIR%%/programs/html/tfm.html
396
%%PORTDOCS%%DOCSDIR%%/programs/html/tfscan.html
397
%%PORTDOCS%%DOCSDIR%%/programs/html/tmap.html
398
%%PORTDOCS%%DOCSDIR%%/programs/html/topo.html
399
%%PORTDOCS%%DOCSDIR%%/programs/html/tranalign.html
400
%%PORTDOCS%%DOCSDIR%%/programs/html/transeq.html
401
%%PORTDOCS%%DOCSDIR%%/programs/html/trimest.html
402
%%PORTDOCS%%DOCSDIR%%/programs/html/trimseq.html
403
%%PORTDOCS%%DOCSDIR%%/programs/html/twofeat.html
404
%%PORTDOCS%%DOCSDIR%%/programs/html/union.html
405
%%PORTDOCS%%DOCSDIR%%/programs/html/utils_database_creation_group.html
406
%%PORTDOCS%%DOCSDIR%%/programs/html/utils_database_indexing_group.html
407
%%PORTDOCS%%DOCSDIR%%/programs/html/utils_misc_group.html
408
%%PORTDOCS%%DOCSDIR%%/programs/html/vectorstrip.html
409
%%PORTDOCS%%DOCSDIR%%/programs/html/water.html
410
%%PORTDOCS%%DOCSDIR%%/programs/html/whichdb.html
411
%%PORTDOCS%%DOCSDIR%%/programs/html/wobble.html
412
%%PORTDOCS%%DOCSDIR%%/programs/html/wordcount.html
413
%%PORTDOCS%%DOCSDIR%%/programs/html/wordmatch.html
414
%%PORTDOCS%%DOCSDIR%%/programs/html/wossname.html
415
%%PORTDOCS%%DOCSDIR%%/programs/html/yank.html
416
%%PORTDOCS%%DOCSDIR%%/programs/html/emboss_icon.jpg
417
%%PORTDOCS%%DOCSDIR%%/programs/html/abiview.1.abiview.gif
418
%%PORTDOCS%%DOCSDIR%%/programs/html/chaos.1.chaos.gif
419
%%PORTDOCS%%DOCSDIR%%/programs/html/cirdna.1.cirdna.gif
420
%%PORTDOCS%%DOCSDIR%%/programs/html/dan.2.dan.gif
421
%%PORTDOCS%%DOCSDIR%%/programs/html/cpgplot.1.cpgplot.gif
422
%%PORTDOCS%%DOCSDIR%%/programs/html/dotmatcher.1.dotmatcher.gif
423
%%PORTDOCS%%DOCSDIR%%/programs/html/dotpath.1.dotpath.gif
424
%%PORTDOCS%%DOCSDIR%%/programs/html/dottup.1.dottup.gif
425
%%PORTDOCS%%DOCSDIR%%/programs/html/emboss_icon.gif
426
%%PORTDOCS%%DOCSDIR%%/programs/html/findkm.1.findkm.gif
427
%%PORTDOCS%%DOCSDIR%%/programs/html/isochore.1.isochore.gif
428
%%PORTDOCS%%DOCSDIR%%/programs/html/lindna.1.lindna.gif
429
%%PORTDOCS%%DOCSDIR%%/programs/html/octanol.1.octanol.gif
430
%%PORTDOCS%%DOCSDIR%%/programs/html/pepinfo.1.pepinfo.gif
431
%%PORTDOCS%%DOCSDIR%%/programs/html/pepnet.1.pepnet.gif
432
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwheel.1.pepwheel.gif
433
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwindow.1.pepwindow.gif
434
%%PORTDOCS%%DOCSDIR%%/programs/html/pepwindowall.1.pepwindowall.gif
435
%%PORTDOCS%%DOCSDIR%%/programs/html/plotcon.1.plotcon.gif
436
%%PORTDOCS%%DOCSDIR%%/programs/html/plotorf.1.plotorf.gif
437
%%PORTDOCS%%DOCSDIR%%/programs/html/plotorf.2.plotorf.gif
438
%%PORTDOCS%%DOCSDIR%%/programs/html/polydot.1.polydot.gif
439
%%PORTDOCS%%DOCSDIR%%/programs/html/prettyplot.1.prettyplot.gif
440
%%PORTDOCS%%DOCSDIR%%/programs/html/prettyplot.2.prettyplot.gif
441
%%PORTDOCS%%DOCSDIR%%/programs/html/syco.1.syco.gif
442
%%PORTDOCS%%DOCSDIR%%/programs/html/tmap.1.tmap.gif
443
%%PORTDOCS%%DOCSDIR%%/programs/html/topo.gif
444
%%PORTDOCS%%DOCSDIR%%/programs/html/wobble.1.wobble.gif
445
%%PORTDOCS%%DOCSDIR%%/programs/html/aaindexextract.html
446
%%PORTDOCS%%DOCSDIR%%/programs/html/abiview.html
447
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_consensus_group.html
448
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_differences_group.html
449
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_dot_plots_group.html
450
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_global_group.html
451
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_local_group.html
452
%%PORTDOCS%%DOCSDIR%%/programs/html/antigenic.html
453
%%PORTDOCS%%DOCSDIR%%/programs/html/alignment_multiple_group.html
454
%%PORTDOCS%%DOCSDIR%%/programs/html/backtranseq.html
455
%%PORTDOCS%%DOCSDIR%%/programs/html/banana.html
456
%%PORTDOCS%%DOCSDIR%%/programs/html/biosed.html
457
%%PORTDOCS%%DOCSDIR%%/programs/html/btwisted.html
458
%%PORTDOCS%%DOCSDIR%%/programs/html/cai.html
459
%%PORTDOCS%%DOCSDIR%%/programs/html/chaos.html
460
%%PORTDOCS%%DOCSDIR%%/programs/html/charge.html
461
%%PORTDOCS%%DOCSDIR%%/programs/html/checktrans.html
462
%%PORTDOCS%%DOCSDIR%%/programs/html/chips.html
463
%%PORTDOCS%%DOCSDIR%%/programs/html/cirdna.html
464
%%PORTDOCS%%DOCSDIR%%/programs/html/clique.html
465
%%PORTDOCS%%DOCSDIR%%/programs/html/codcmp.html
466
%%PORTDOCS%%DOCSDIR%%/programs/html/coderet.html
467
%%PORTDOCS%%DOCSDIR%%/programs/html/compseq.html
468
%%PORTDOCS%%DOCSDIR%%/programs/html/cons.html
469
%%PORTDOCS%%DOCSDIR%%/programs/html/consense.html
470
%%PORTDOCS%%DOCSDIR%%/programs/html/contacts.html
471
%%PORTDOCS%%DOCSDIR%%/programs/html/contml.html
472
%%PORTDOCS%%DOCSDIR%%/programs/html/contrast.html
473
%%PORTDOCS%%DOCSDIR%%/programs/html/cpgplot.html
474
%%PORTDOCS%%DOCSDIR%%/programs/html/cpgreport.html
475
%%PORTDOCS%%DOCSDIR%%/programs/html/cusp.html
476
%%PORTDOCS%%DOCSDIR%%/programs/html/cutgextract.html
477
%%PORTDOCS%%DOCSDIR%%/programs/html/cutseq.html
478
%%PORTDOCS%%DOCSDIR%%/programs/html/dan.html
479
%%PORTDOCS%%DOCSDIR%%/programs/html/dbiblast.html
480
%%PORTDOCS%%DOCSDIR%%/programs/html/dbifasta.html
481
%%PORTDOCS%%DOCSDIR%%/programs/html/dbiflat.html
482
%%PORTDOCS%%DOCSDIR%%/programs/html/dbigcg.html
483
%%PORTDOCS%%DOCSDIR%%/programs/html/degapseq.html
484
%%PORTDOCS%%DOCSDIR%%/programs/html/descseq.html
485
%%PORTDOCS%%DOCSDIR%%/programs/html/diffseq.html
486
%%PORTDOCS%%DOCSDIR%%/programs/html/digest.html
487
%%PORTDOCS%%DOCSDIR%%/programs/html/display_group.html
488
%%PORTDOCS%%DOCSDIR%%/programs/html/distmat.html
489
%%PORTDOCS%%DOCSDIR%%/programs/html/dnacomp.html
490
%%PORTDOCS%%DOCSDIR%%/programs/html/dnadist.html
491
%%PORTDOCS%%DOCSDIR%%/programs/html/dnainvar.html
492
%%PORTDOCS%%DOCSDIR%%/programs/html/dnaml.html
493
%%PORTDOCS%%DOCSDIR%%/programs/html/dnamlk.html
494
%%PORTDOCS%%DOCSDIR%%/programs/html/dnapars.html
495
%%PORTDOCS%%DOCSDIR%%/programs/html/dnapenny.html
496
%%PORTDOCS%%DOCSDIR%%/programs/html/dollop.html
497
%%PORTDOCS%%DOCSDIR%%/programs/html/dolpenny.html
498
%%PORTDOCS%%DOCSDIR%%/programs/html/domainer.html
499
%%PORTDOCS%%DOCSDIR%%/programs/html/dotmatcher.html
500
%%PORTDOCS%%DOCSDIR%%/programs/html/dotpath.html
501
%%PORTDOCS%%DOCSDIR%%/programs/html/dottup.html
502
%%PORTDOCS%%DOCSDIR%%/programs/html/dreg.html
503
%%PORTDOCS%%DOCSDIR%%/programs/html/eclique.html
504
%%PORTDOCS%%DOCSDIR%%/programs/html/econsense.html
505
%%PORTDOCS%%DOCSDIR%%/programs/html/econtml.html
506
%%PORTDOCS%%DOCSDIR%%/programs/html/econtrast.html
507
%%PORTDOCS%%DOCSDIR%%/programs/html/edit_group.html
508
%%PORTDOCS%%DOCSDIR%%/programs/html/ednacomp.html
509
%%PORTDOCS%%DOCSDIR%%/programs/html/ednadist.html
510
%%PORTDOCS%%DOCSDIR%%/programs/html/ednainvar.html
511
%%PORTDOCS%%DOCSDIR%%/programs/html/ednaml.html
512
%%PORTDOCS%%DOCSDIR%%/programs/html/ednamlk.html
513
%%PORTDOCS%%DOCSDIR%%/programs/html/ednapars.html
514
%%PORTDOCS%%DOCSDIR%%/programs/html/ednapenny.html
515
%%PORTDOCS%%DOCSDIR%%/programs/html/edollop.html
516
%%PORTDOCS%%DOCSDIR%%/programs/html/edolpenny.html
517
%%PORTDOCS%%DOCSDIR%%/programs/html/efactor.html
518
%%PORTDOCS%%DOCSDIR%%/programs/html/efitch.html
519
%%PORTDOCS%%DOCSDIR%%/programs/html/egendist.html
520
%%PORTDOCS%%DOCSDIR%%/programs/html/einverted.html
521
%%PORTDOCS%%DOCSDIR%%/programs/html/ekitsch.html
522
%%PORTDOCS%%DOCSDIR%%/programs/html/embossdata.html
523
%%PORTDOCS%%DOCSDIR%%/programs/html/embossversion.html
524
%%PORTDOCS%%DOCSDIR%%/programs/html/emix.html
525
%%PORTDOCS%%DOCSDIR%%/programs/html/emma.html
526
%%PORTDOCS%%DOCSDIR%%/programs/html/emowse.html
527
%%PORTDOCS%%DOCSDIR%%/programs/html/eneighbor.html
528
%%PORTDOCS%%DOCSDIR%%/programs/html/entret.html
529
%%PORTDOCS%%DOCSDIR%%/programs/html/enzyme_kinetics_group.html
530
%%PORTDOCS%%DOCSDIR%%/programs/html/epenny.html
531
%%PORTDOCS%%DOCSDIR%%/programs/html/epestfind.html
532
%%PORTDOCS%%DOCSDIR%%/programs/html/eprimer3.html
533
%%PORTDOCS%%DOCSDIR%%/programs/html/eprotdist.html
534
%%PORTDOCS%%DOCSDIR%%/programs/html/eprotpars.html
535
%%PORTDOCS%%DOCSDIR%%/programs/html/equicktandem.html
536
%%PORTDOCS%%DOCSDIR%%/programs/html/erestml.html
537
%%PORTDOCS%%DOCSDIR%%/programs/html/eseqboot.html
538
%%PORTDOCS%%DOCSDIR%%/programs/html/est2genome.html
539
%%PORTDOCS%%DOCSDIR%%/programs/html/etandem.html
540
%%PORTDOCS%%DOCSDIR%%/programs/html/extractfeat.html
541
%%PORTDOCS%%DOCSDIR%%/programs/html/extractseq.html
542
%%PORTDOCS%%DOCSDIR%%/programs/html/factor.html
543
%%PORTDOCS%%DOCSDIR%%/programs/html/feature_tables_group.html
544
%%PORTDOCS%%DOCSDIR%%/programs/html/findkm.html
545
%%PORTDOCS%%DOCSDIR%%/programs/html/fitch.html
546
%%PORTDOCS%%DOCSDIR%%/programs/html/freak.html
547
%%PORTDOCS%%DOCSDIR%%/programs/html/fuzznuc.html
548
%%PORTDOCS%%DOCSDIR%%/programs/html/fuzzpro.html
549
%%PORTDOCS%%DOCSDIR%%/programs/html/fuzztran.html
550
%%PORTDOCS%%DOCSDIR%%/programs/html/garnier.html
551
%%PORTDOCS%%DOCSDIR%%/programs/html/geecee.html
552
%%PORTDOCS%%DOCSDIR%%/programs/html/gendist.html
553
%%PORTDOCS%%DOCSDIR%%/programs/html/getorf.html
554
%%PORTDOCS%%DOCSDIR%%/programs/html/groups.html
555
%%PORTDOCS%%DOCSDIR%%/programs/html/helixturnhelix.html
556
%%PORTDOCS%%DOCSDIR%%/programs/html/hetparse.html
557
%%PORTDOCS%%DOCSDIR%%/programs/html/hmmgen.html
558
%%PORTDOCS%%DOCSDIR%%/programs/html/hmoment.html
559
%%PORTDOCS%%DOCSDIR%%/programs/html/iep.html
560
%%PORTDOCS%%DOCSDIR%%/programs/html/index.html
561
%%PORTDOCS%%DOCSDIR%%/programs/html/infoalign.html
562
%%PORTDOCS%%DOCSDIR%%/programs/html/information_group.html
563
%%PORTDOCS%%DOCSDIR%%/programs/html/infoseq.html
564
%%PORTDOCS%%DOCSDIR%%/programs/html/interface.html
565
%%PORTDOCS%%DOCSDIR%%/programs/html/isochore.html
566
%%PORTDOCS%%DOCSDIR%%/programs/html/kitsch.html
567
%%PORTDOCS%%DOCSDIR%%/programs/text/interface.txt
568
%%PORTDOCS%%DOCSDIR%%/programs/text/isochore.txt
569
%%PORTDOCS%%DOCSDIR%%/programs/text/kitsch.txt
570
%%PORTDOCS%%DOCSDIR%%/programs/text/lindna.txt
571
%%PORTDOCS%%DOCSDIR%%/programs/text/listor.txt
572
%%PORTDOCS%%DOCSDIR%%/programs/text/marscan.txt
573
%%PORTDOCS%%DOCSDIR%%/programs/text/maskfeat.txt
574
%%PORTDOCS%%DOCSDIR%%/programs/text/maskseq.txt
575
%%PORTDOCS%%DOCSDIR%%/programs/text/matcher.txt
576
%%PORTDOCS%%DOCSDIR%%/programs/text/megamerger.txt
577
%%PORTDOCS%%DOCSDIR%%/programs/text/merger.txt
578
%%PORTDOCS%%DOCSDIR%%/programs/text/mix.txt
579
%%PORTDOCS%%DOCSDIR%%/programs/text/msbar.txt
580
%%PORTDOCS%%DOCSDIR%%/programs/text/mse.txt
581
%%PORTDOCS%%DOCSDIR%%/programs/text/mwcontam.txt
582
%%PORTDOCS%%DOCSDIR%%/programs/text/mwfilter.txt
583
%%PORTDOCS%%DOCSDIR%%/programs/text/needle.txt
584
%%PORTDOCS%%DOCSDIR%%/programs/text/neighbor.txt
585
%%PORTDOCS%%DOCSDIR%%/programs/text/newcpgreport.txt
586
%%PORTDOCS%%DOCSDIR%%/programs/text/newcpgseek.txt
587
%%PORTDOCS%%DOCSDIR%%/programs/text/newseq.txt
588
%%PORTDOCS%%DOCSDIR%%/programs/text/noreturn.txt
589
%%PORTDOCS%%DOCSDIR%%/programs/text/notseq.txt
590
%%PORTDOCS%%DOCSDIR%%/programs/text/nthseq.txt
591
%%PORTDOCS%%DOCSDIR%%/programs/text/octanol.txt
592
%%PORTDOCS%%DOCSDIR%%/programs/text/oddcomp.txt
593
%%PORTDOCS%%DOCSDIR%%/programs/text/palindrome.txt
594
%%PORTDOCS%%DOCSDIR%%/programs/text/pasteseq.txt
595
%%PORTDOCS%%DOCSDIR%%/programs/text/patmatdb.txt
596
%%PORTDOCS%%DOCSDIR%%/programs/text/patmatmotifs.txt
597
%%PORTDOCS%%DOCSDIR%%/programs/text/penny.txt
598
%%PORTDOCS%%DOCSDIR%%/programs/text/pepcoil.txt
599
%%PORTDOCS%%DOCSDIR%%/programs/text/pepinfo.txt
600
%%PORTDOCS%%DOCSDIR%%/programs/text/pepnet.txt
601
%%PORTDOCS%%DOCSDIR%%/programs/text/pepstats.txt
602
%%PORTDOCS%%DOCSDIR%%/programs/text/pepwheel.txt
603
%%PORTDOCS%%DOCSDIR%%/programs/text/pepwindow.txt
604
%%PORTDOCS%%DOCSDIR%%/programs/text/pepwindowall.txt
605
%%PORTDOCS%%DOCSDIR%%/programs/text/pestfind.txt
606
%%PORTDOCS%%DOCSDIR%%/programs/text/plotcon.txt
607
%%PORTDOCS%%DOCSDIR%%/programs/text/plotorf.txt
608
%%PORTDOCS%%DOCSDIR%%/programs/text/polydot.txt
609
%%PORTDOCS%%DOCSDIR%%/programs/text/preg.txt
610
%%PORTDOCS%%DOCSDIR%%/programs/text/prettyplot.txt
611
%%PORTDOCS%%DOCSDIR%%/programs/text/prettyseq.txt
612
%%PORTDOCS%%DOCSDIR%%/programs/text/primersearch.txt
613
%%PORTDOCS%%DOCSDIR%%/programs/text/printsextract.txt
614
%%PORTDOCS%%DOCSDIR%%/programs/text/profit.txt
615
%%PORTDOCS%%DOCSDIR%%/programs/text/prophecy.txt
616
%%PORTDOCS%%DOCSDIR%%/programs/text/prophet.txt
617
%%PORTDOCS%%DOCSDIR%%/programs/text/prosextract.txt
618
%%PORTDOCS%%DOCSDIR%%/programs/text/protdist.txt
619
%%PORTDOCS%%DOCSDIR%%/programs/text/pscan.txt
620
%%PORTDOCS%%DOCSDIR%%/programs/text/rebaseextract.txt
621
%%PORTDOCS%%DOCSDIR%%/programs/text/recoder.txt
622
%%PORTDOCS%%DOCSDIR%%/programs/text/redata.txt
623
%%PORTDOCS%%DOCSDIR%%/programs/text/remap.txt
624
%%PORTDOCS%%DOCSDIR%%/programs/text/restml.txt
625
%%PORTDOCS%%DOCSDIR%%/programs/text/restover.txt
626
%%PORTDOCS%%DOCSDIR%%/programs/text/restrict.txt
627
%%PORTDOCS%%DOCSDIR%%/programs/text/revseq.txt
628
%%PORTDOCS%%DOCSDIR%%/programs/text/scope.txt
629
%%PORTDOCS%%DOCSDIR%%/programs/text/seealso.txt
630
%%PORTDOCS%%DOCSDIR%%/programs/text/seqboot.txt
631
%%PORTDOCS%%DOCSDIR%%/programs/text/seqmatchall.txt
632
%%PORTDOCS%%DOCSDIR%%/programs/text/seqret.txt
633
%%PORTDOCS%%DOCSDIR%%/programs/text/seqretsplit.txt
634
%%PORTDOCS%%DOCSDIR%%/programs/text/showdb.txt
635
%%PORTDOCS%%DOCSDIR%%/programs/text/showalign.txt
636
%%PORTDOCS%%DOCSDIR%%/programs/text/showfeat.txt
637
%%PORTDOCS%%DOCSDIR%%/programs/text/showorf.txt
638
%%PORTDOCS%%DOCSDIR%%/programs/text/showseq.txt
639
%%PORTDOCS%%DOCSDIR%%/programs/text/shuffleseq.txt
640
%%PORTDOCS%%DOCSDIR%%/programs/text/sigcleave.txt
641
%%PORTDOCS%%DOCSDIR%%/programs/text/silent.txt
642
%%PORTDOCS%%DOCSDIR%%/programs/text/sirna.txt
643
%%PORTDOCS%%DOCSDIR%%/programs/text/sixpack.txt
644
%%PORTDOCS%%DOCSDIR%%/programs/text/skipseq.txt
645
%%PORTDOCS%%DOCSDIR%%/programs/text/splitter.txt
646
%%PORTDOCS%%DOCSDIR%%/programs/text/stretcher.txt
647
%%PORTDOCS%%DOCSDIR%%/programs/text/stssearch.txt
648
%%PORTDOCS%%DOCSDIR%%/programs/text/supermatcher.txt
649
%%PORTDOCS%%DOCSDIR%%/programs/text/syco.txt
650
%%PORTDOCS%%DOCSDIR%%/programs/text/tcode.txt
651
%%PORTDOCS%%DOCSDIR%%/programs/text/textsearch.txt
652
%%PORTDOCS%%DOCSDIR%%/programs/text/tfextract.txt
653
%%PORTDOCS%%DOCSDIR%%/programs/text/tfm.txt
654
%%PORTDOCS%%DOCSDIR%%/programs/text/tfscan.txt
655
%%PORTDOCS%%DOCSDIR%%/programs/text/tmap.txt
656
%%PORTDOCS%%DOCSDIR%%/programs/text/topo.txt
657
%%PORTDOCS%%DOCSDIR%%/programs/text/tranalign.txt
658
%%PORTDOCS%%DOCSDIR%%/programs/text/transeq.txt
659
%%PORTDOCS%%DOCSDIR%%/programs/text/trimest.txt
660
%%PORTDOCS%%DOCSDIR%%/programs/text/trimseq.txt
661
%%PORTDOCS%%DOCSDIR%%/programs/text/twofeat.txt
662
%%PORTDOCS%%DOCSDIR%%/programs/text/union.txt
663
%%PORTDOCS%%DOCSDIR%%/programs/text/vectorstrip.txt
664
%%PORTDOCS%%DOCSDIR%%/programs/text/water.txt
665
%%PORTDOCS%%DOCSDIR%%/programs/text/whichdb.txt
666
%%PORTDOCS%%DOCSDIR%%/programs/text/wobble.txt
667
%%PORTDOCS%%DOCSDIR%%/programs/text/wordcount.txt
668
%%PORTDOCS%%DOCSDIR%%/programs/text/wordmatch.txt
669
%%PORTDOCS%%DOCSDIR%%/programs/text/wossname.txt
670
%%PORTDOCS%%DOCSDIR%%/programs/text/yank.txt
671
%%PORTDOCS%%DOCSDIR%%/programs/text/SITE-DIRECTED.txt
672
%%PORTDOCS%%DOCSDIR%%/programs/text/aaindexextract.txt
673
%%PORTDOCS%%DOCSDIR%%/programs/text/abiview.txt
674
%%PORTDOCS%%DOCSDIR%%/programs/text/antigenic.txt
675
%%PORTDOCS%%DOCSDIR%%/programs/text/backtranseq.txt
676
%%PORTDOCS%%DOCSDIR%%/programs/text/banana.txt
677
%%PORTDOCS%%DOCSDIR%%/programs/text/biosed.txt
678
%%PORTDOCS%%DOCSDIR%%/programs/text/btwisted.txt
679
%%PORTDOCS%%DOCSDIR%%/programs/text/cai.txt
680
%%PORTDOCS%%DOCSDIR%%/programs/text/chaos.txt
681
%%PORTDOCS%%DOCSDIR%%/programs/text/charge.txt
682
%%PORTDOCS%%DOCSDIR%%/programs/text/checktrans.txt
683
%%PORTDOCS%%DOCSDIR%%/programs/text/chips.txt
684
%%PORTDOCS%%DOCSDIR%%/programs/text/cirdna.txt
685
%%PORTDOCS%%DOCSDIR%%/programs/text/clique.txt
686
%%PORTDOCS%%DOCSDIR%%/programs/text/codcmp.txt
687
%%PORTDOCS%%DOCSDIR%%/programs/text/coderet.txt
688
%%PORTDOCS%%DOCSDIR%%/programs/text/complex.txt
689
%%PORTDOCS%%DOCSDIR%%/programs/text/compseq.txt
690
%%PORTDOCS%%DOCSDIR%%/programs/text/cons.txt
691
%%PORTDOCS%%DOCSDIR%%/programs/text/consense.txt
692
%%PORTDOCS%%DOCSDIR%%/programs/text/contacts.txt
693
%%PORTDOCS%%DOCSDIR%%/programs/text/contml.txt
694
%%PORTDOCS%%DOCSDIR%%/programs/text/contrast.txt
695
%%PORTDOCS%%DOCSDIR%%/programs/text/cpgplot.txt
696
%%PORTDOCS%%DOCSDIR%%/programs/text/cpgreport.txt
697
%%PORTDOCS%%DOCSDIR%%/programs/text/cusp.txt
698
%%PORTDOCS%%DOCSDIR%%/programs/text/cutgextract.txt
699
%%PORTDOCS%%DOCSDIR%%/programs/text/cutseq.txt
700
%%PORTDOCS%%DOCSDIR%%/programs/text/dan.txt
701
%%PORTDOCS%%DOCSDIR%%/programs/text/dbiblast.txt
702
%%PORTDOCS%%DOCSDIR%%/programs/text/dbifasta.txt
703
%%PORTDOCS%%DOCSDIR%%/programs/text/dbiflat.txt
704
%%PORTDOCS%%DOCSDIR%%/programs/text/dbigcg.txt
705
%%PORTDOCS%%DOCSDIR%%/programs/text/degapseq.txt
706
%%PORTDOCS%%DOCSDIR%%/programs/text/descseq.txt
707
%%PORTDOCS%%DOCSDIR%%/programs/text/diffseq.txt
708
%%PORTDOCS%%DOCSDIR%%/programs/text/digest.txt
709
%%PORTDOCS%%DOCSDIR%%/programs/text/distmat.txt
710
%%PORTDOCS%%DOCSDIR%%/programs/text/dnacomp.txt
711
%%PORTDOCS%%DOCSDIR%%/programs/text/dnadist.txt
712
%%PORTDOCS%%DOCSDIR%%/programs/text/dnainvar.txt
713
%%PORTDOCS%%DOCSDIR%%/programs/text/dnaml.txt
714
%%PORTDOCS%%DOCSDIR%%/programs/text/dnamlk.txt
715
%%PORTDOCS%%DOCSDIR%%/programs/text/dnapars.txt
716
%%PORTDOCS%%DOCSDIR%%/programs/text/dnapenny.txt
717
%%PORTDOCS%%DOCSDIR%%/programs/text/dollop.txt
718
%%PORTDOCS%%DOCSDIR%%/programs/text/dolpenny.txt
719
%%PORTDOCS%%DOCSDIR%%/programs/text/domainer.txt
720
%%PORTDOCS%%DOCSDIR%%/programs/text/dotmatcher.txt
721
%%PORTDOCS%%DOCSDIR%%/programs/text/dotpath.txt
722
%%PORTDOCS%%DOCSDIR%%/programs/text/dottup.txt
723
%%PORTDOCS%%DOCSDIR%%/programs/text/dreg.txt
724
%%PORTDOCS%%DOCSDIR%%/programs/text/eclique.txt
725
%%PORTDOCS%%DOCSDIR%%/programs/text/econsense.txt
726
%%PORTDOCS%%DOCSDIR%%/programs/text/econtml.txt
727
%%PORTDOCS%%DOCSDIR%%/programs/text/econtrast.txt
728
%%PORTDOCS%%DOCSDIR%%/programs/text/ednaml.txt
729
%%PORTDOCS%%DOCSDIR%%/programs/text/ednacomp.txt
730
%%PORTDOCS%%DOCSDIR%%/programs/text/ednadist.txt
731
%%PORTDOCS%%DOCSDIR%%/programs/text/ednainvar.txt
732
%%PORTDOCS%%DOCSDIR%%/programs/text/ednamlk.txt
733
%%PORTDOCS%%DOCSDIR%%/programs/text/ednapars.txt
734
%%PORTDOCS%%DOCSDIR%%/programs/text/ednapenny.txt
735
%%PORTDOCS%%DOCSDIR%%/programs/text/edollop.txt
736
%%PORTDOCS%%DOCSDIR%%/programs/text/edolpenny.txt
737
%%PORTDOCS%%DOCSDIR%%/programs/text/efactor.txt
738
%%PORTDOCS%%DOCSDIR%%/programs/text/efitch.txt
739
%%PORTDOCS%%DOCSDIR%%/programs/text/egendist.txt
740
%%PORTDOCS%%DOCSDIR%%/programs/text/einverted.txt
741
%%PORTDOCS%%DOCSDIR%%/programs/text/ekitsch.txt
742
%%PORTDOCS%%DOCSDIR%%/programs/text/embossdata.txt
743
%%PORTDOCS%%DOCSDIR%%/programs/text/embossversion.txt
744
%%PORTDOCS%%DOCSDIR%%/programs/text/emix.txt
745
%%PORTDOCS%%DOCSDIR%%/programs/text/emma.txt
746
%%PORTDOCS%%DOCSDIR%%/programs/text/emowse.txt
747
%%PORTDOCS%%DOCSDIR%%/programs/text/eneighbor.txt
748
%%PORTDOCS%%DOCSDIR%%/programs/text/entret.txt
749
%%PORTDOCS%%DOCSDIR%%/programs/text/epenny.txt
750
%%PORTDOCS%%DOCSDIR%%/programs/text/epestfind.txt
751
%%PORTDOCS%%DOCSDIR%%/programs/text/erestml.txt
752
%%PORTDOCS%%DOCSDIR%%/programs/text/eprimer3.txt
753
%%PORTDOCS%%DOCSDIR%%/programs/text/eprotdist.txt
754
%%PORTDOCS%%DOCSDIR%%/programs/text/eprotpars.txt
755
%%PORTDOCS%%DOCSDIR%%/programs/text/equicktandem.txt
756
%%PORTDOCS%%DOCSDIR%%/programs/text/eseqboot.txt
757
%%PORTDOCS%%DOCSDIR%%/programs/text/est2genome.txt
758
%%PORTDOCS%%DOCSDIR%%/programs/text/etandem.txt
759
%%PORTDOCS%%DOCSDIR%%/programs/text/extractfeat.txt
760
%%PORTDOCS%%DOCSDIR%%/programs/text/extractseq.txt
761
%%PORTDOCS%%DOCSDIR%%/programs/text/factor.txt
762
%%PORTDOCS%%DOCSDIR%%/programs/text/findkm.txt
763
%%PORTDOCS%%DOCSDIR%%/programs/text/fitch.txt
764
%%PORTDOCS%%DOCSDIR%%/programs/text/freak.txt
765
%%PORTDOCS%%DOCSDIR%%/programs/text/fuzznuc.txt
766
%%PORTDOCS%%DOCSDIR%%/programs/text/fuzzpro.txt
767
%%PORTDOCS%%DOCSDIR%%/programs/text/fuzztran.txt
768
%%PORTDOCS%%DOCSDIR%%/programs/text/garnier.txt
769
%%PORTDOCS%%DOCSDIR%%/programs/text/geecee.txt
770
%%PORTDOCS%%DOCSDIR%%/programs/text/gendist.txt
771
%%PORTDOCS%%DOCSDIR%%/programs/text/getorf.txt
772
%%PORTDOCS%%DOCSDIR%%/programs/text/helixturnhelix.txt
773
%%PORTDOCS%%DOCSDIR%%/programs/text/hetparse.txt
774
%%PORTDOCS%%DOCSDIR%%/programs/text/hmmgen.txt
775
%%PORTDOCS%%DOCSDIR%%/programs/text/hmoment.txt
776
%%PORTDOCS%%DOCSDIR%%/programs/text/iep.txt
777
%%PORTDOCS%%DOCSDIR%%/programs/text/infoalign.txt
778
%%PORTDOCS%%DOCSDIR%%/programs/text/infoseq.txt
779
%%PORTDOCS%%DOCSDIR%%/tutorials/emboss-gcg.ppt
780
%%PORTDOCS%%DOCSDIR%%/tutorials/emboss-interfaces.ppt
781
%%PORTDOCS%%DOCSDIR%%/tutorials/emboss-talk.ppt
782
%%PORTDOCS%%DOCSDIR%%/tutorials/emboss_tut.tar.gz
783
share/EMBOSS/plstnd5.fnt
784
share/EMBOSS/plxtnd5.fnt
347
share/EMBOSS/acd/megamerger.acd
785
share/EMBOSS/acd/megamerger.acd
348
share/EMBOSS/acd/merger.acd
786
share/EMBOSS/acd/merger.acd
349
share/EMBOSS/acd/msbar.acd
787
share/EMBOSS/acd/msbar.acd
788
share/EMBOSS/acd/mwcontam.acd
350
share/EMBOSS/acd/mwfilter.acd
789
share/EMBOSS/acd/mwfilter.acd
351
share/EMBOSS/acd/needle.acd
790
share/EMBOSS/acd/needle.acd
791
share/EMBOSS/acd/newcoils.acd
352
share/EMBOSS/acd/newcpgreport.acd
792
share/EMBOSS/acd/newcpgreport.acd
353
share/EMBOSS/acd/newcpgseek.acd
793
share/EMBOSS/acd/newcpgseek.acd
354
share/EMBOSS/acd/newseq.acd
794
share/EMBOSS/acd/newseq.acd
355
share/EMBOSS/acd/noreturn.acd
795
share/EMBOSS/acd/noreturn.acd
356
share/EMBOSS/acd/notseq.acd
796
share/EMBOSS/acd/notseq.acd
357
share/EMBOSS/acd/nrscope.acd
358
share/EMBOSS/acd/nthseq.acd
797
share/EMBOSS/acd/nthseq.acd
359
share/EMBOSS/acd/octanol.acd
798
share/EMBOSS/acd/octanol.acd
360
share/EMBOSS/acd/oddcomp.acd
799
share/EMBOSS/acd/oddcomp.acd
Lines 363-369 Link Here
363
share/EMBOSS/acd/patmatdb.acd
802
share/EMBOSS/acd/patmatdb.acd
364
share/EMBOSS/acd/patmatmotifs.acd
803
share/EMBOSS/acd/patmatmotifs.acd
365
share/EMBOSS/acd/patmattest.acd
804
share/EMBOSS/acd/patmattest.acd
366
share/EMBOSS/acd/pdbtosp.acd
367
share/EMBOSS/acd/pepcoil.acd
805
share/EMBOSS/acd/pepcoil.acd
368
share/EMBOSS/acd/pepinfo.acd
806
share/EMBOSS/acd/pepinfo.acd
369
share/EMBOSS/acd/pepnet.acd
807
share/EMBOSS/acd/pepnet.acd
Lines 386-392 Link Here
386
share/EMBOSS/acd/prophet.acd
824
share/EMBOSS/acd/prophet.acd
387
share/EMBOSS/acd/prosextract.acd
825
share/EMBOSS/acd/prosextract.acd
388
share/EMBOSS/acd/pscan.acd
826
share/EMBOSS/acd/pscan.acd
389
share/EMBOSS/acd/psiblasts.acd
390
share/EMBOSS/acd/rebaseextract.acd
827
share/EMBOSS/acd/rebaseextract.acd
391
share/EMBOSS/acd/recoder.acd
828
share/EMBOSS/acd/recoder.acd
392
share/EMBOSS/acd/redata.acd
829
share/EMBOSS/acd/redata.acd
Lines 394-433 Link Here
394
share/EMBOSS/acd/restover.acd
831
share/EMBOSS/acd/restover.acd
395
share/EMBOSS/acd/restrict.acd
832
share/EMBOSS/acd/restrict.acd
396
share/EMBOSS/acd/revseq.acd
833
share/EMBOSS/acd/revseq.acd
397
share/EMBOSS/acd/scopalign.acd
398
share/EMBOSS/acd/scopparse.acd
399
share/EMBOSS/acd/scope.acd
400
share/EMBOSS/acd/seealso.acd
834
share/EMBOSS/acd/seealso.acd
401
share/EMBOSS/acd/seqinfo.acd
835
share/EMBOSS/acd/seqinfo.acd
402
share/EMBOSS/acd/seqmatchall.acd
836
share/EMBOSS/acd/seqmatchall.acd
403
share/EMBOSS/acd/seqnr.acd
404
share/EMBOSS/acd/seqret.acd
837
share/EMBOSS/acd/seqret.acd
405
share/EMBOSS/acd/seqretall.acd
838
share/EMBOSS/acd/seqretall.acd
406
share/EMBOSS/acd/seqretallfeat.acd
839
share/EMBOSS/acd/seqretallfeat.acd
407
share/EMBOSS/acd/seqretset.acd
840
share/EMBOSS/acd/seqretset.acd
408
share/EMBOSS/acd/seqretsingle.acd
841
share/EMBOSS/acd/seqretsingle.acd
409
share/EMBOSS/acd/seqretsplit.acd
842
share/EMBOSS/acd/seqretsplit.acd
410
share/EMBOSS/acd/seqsort.acd
843
share/EMBOSS/acd/seqrettype.acd
411
share/EMBOSS/acd/showalign.acd
844
share/EMBOSS/acd/showalign.acd
412
share/EMBOSS/acd/showdb.acd
845
share/EMBOSS/acd/showdb.acd
413
share/EMBOSS/acd/showfeat.acd
846
share/EMBOSS/acd/showfeat.acd
414
share/EMBOSS/acd/showorf.acd
847
share/EMBOSS/acd/showorf.acd
415
share/EMBOSS/acd/showseq.acd
848
share/EMBOSS/acd/showseq.acd
416
share/EMBOSS/acd/shuffleseq.acd
849
share/EMBOSS/acd/shuffleseq.acd
850
share/EMBOSS/acd/tfm.acd
417
share/EMBOSS/acd/sigcleave.acd
851
share/EMBOSS/acd/sigcleave.acd
418
share/EMBOSS/acd/siggen.acd
419
share/EMBOSS/acd/sigscan.acd
420
share/EMBOSS/acd/silent.acd
852
share/EMBOSS/acd/silent.acd
853
share/EMBOSS/acd/sirna.acd
854
share/EMBOSS/acd/sixpack.acd
855
share/EMBOSS/acd/skipseq.acd
421
share/EMBOSS/acd/splitter.acd
856
share/EMBOSS/acd/splitter.acd
422
share/EMBOSS/acd/stretcher.acd
857
share/EMBOSS/acd/stretcher.acd
423
share/EMBOSS/acd/stssearch.acd
858
share/EMBOSS/acd/stssearch.acd
424
share/EMBOSS/acd/supermatcher.acd
859
share/EMBOSS/acd/supermatcher.acd
425
share/EMBOSS/acd/swissparse.acd
426
share/EMBOSS/acd/syco.acd
860
share/EMBOSS/acd/syco.acd
861
share/EMBOSS/acd/tcode.acd
427
share/EMBOSS/acd/testplot.acd
862
share/EMBOSS/acd/testplot.acd
428
share/EMBOSS/acd/textsearch.acd
863
share/EMBOSS/acd/textsearch.acd
429
share/EMBOSS/acd/tfextract.acd
864
share/EMBOSS/acd/tfextract.acd
430
share/EMBOSS/acd/tfm.acd
431
share/EMBOSS/acd/tfscan.acd
865
share/EMBOSS/acd/tfscan.acd
432
share/EMBOSS/acd/tmap.acd
866
share/EMBOSS/acd/tmap.acd
433
share/EMBOSS/acd/tranalign.acd
867
share/EMBOSS/acd/tranalign.acd
Lines 435-440 Link Here
435
share/EMBOSS/acd/treetypedisplay.acd
869
share/EMBOSS/acd/treetypedisplay.acd
436
share/EMBOSS/acd/trimest.acd
870
share/EMBOSS/acd/trimest.acd
437
share/EMBOSS/acd/trimseq.acd
871
share/EMBOSS/acd/trimseq.acd
872
share/EMBOSS/acd/twofeat.acd
438
share/EMBOSS/acd/union.acd
873
share/EMBOSS/acd/union.acd
439
share/EMBOSS/acd/vectorstrip.acd
874
share/EMBOSS/acd/vectorstrip.acd
440
share/EMBOSS/acd/water.acd
875
share/EMBOSS/acd/water.acd
Lines 444-449 Link Here
444
share/EMBOSS/acd/wordmatch.acd
879
share/EMBOSS/acd/wordmatch.acd
445
share/EMBOSS/acd/wossname.acd
880
share/EMBOSS/acd/wossname.acd
446
share/EMBOSS/acd/yank.acd
881
share/EMBOSS/acd/yank.acd
882
share/EMBOSS/acd/codes.english
883
share/EMBOSS/acd/groups.standard
884
share/EMBOSS/acd/sections.standard
885
share/EMBOSS/acd/aaindexextract.acd
886
share/EMBOSS/acd/abiview.acd
887
share/EMBOSS/acd/ajbad.acd
888
share/EMBOSS/acd/ajfeatest.acd
889
share/EMBOSS/acd/ajtest.acd
890
share/EMBOSS/acd/antigenic.acd
891
share/EMBOSS/acd/backtranseq.acd
892
share/EMBOSS/acd/banana.acd
893
share/EMBOSS/acd/biosed.acd
894
share/EMBOSS/acd/btwisted.acd
895
share/EMBOSS/acd/cai.acd
896
share/EMBOSS/acd/chaos.acd
897
share/EMBOSS/acd/charge.acd
898
share/EMBOSS/acd/checktrans.acd
899
share/EMBOSS/acd/chips.acd
900
share/EMBOSS/acd/cirdna.acd
901
share/EMBOSS/acd/codcmp.acd
902
share/EMBOSS/acd/coderet.acd
903
share/EMBOSS/acd/complex.acd
904
share/EMBOSS/acd/compseq.acd
905
share/EMBOSS/acd/cons.acd
906
share/EMBOSS/acd/corbatest.acd
907
share/EMBOSS/acd/cpgplot.acd
908
share/EMBOSS/acd/cpgreport.acd
909
share/EMBOSS/acd/cusp.acd
910
share/EMBOSS/acd/cutgextract.acd
911
share/EMBOSS/acd/cutseq.acd
912
share/EMBOSS/acd/dan.acd
913
share/EMBOSS/acd/dbiblast.acd
914
share/EMBOSS/acd/dbifasta.acd
915
share/EMBOSS/acd/dbiflat.acd
916
share/EMBOSS/acd/dbigcg.acd
917
share/EMBOSS/acd/degapseq.acd
918
share/EMBOSS/acd/demoalign.acd
919
share/EMBOSS/acd/demofeatures.acd
920
share/EMBOSS/acd/iep.acd
921
share/EMBOSS/acd/demolist.acd
922
share/EMBOSS/acd/demoreport.acd
923
share/EMBOSS/acd/demosequence.acd
924
share/EMBOSS/acd/demostring.acd
925
share/EMBOSS/acd/demotable.acd
926
share/EMBOSS/acd/descseq.acd
927
share/EMBOSS/acd/diffseq.acd
928
share/EMBOSS/acd/digest.acd
929
share/EMBOSS/acd/distmat.acd
930
share/EMBOSS/acd/dotmatcher.acd
931
share/EMBOSS/acd/dotpath.acd
932
share/EMBOSS/acd/dottup.acd
933
share/EMBOSS/acd/dreg.acd
934
share/EMBOSS/acd/einverted.acd
935
share/EMBOSS/acd/embossdata.acd
936
share/EMBOSS/acd/embossversion.acd
937
share/EMBOSS/acd/emma.acd
938
share/EMBOSS/acd/emowse.acd
939
share/EMBOSS/acd/entrails.acd
940
share/EMBOSS/acd/entret.acd
941
share/EMBOSS/acd/epestfind.acd
942
share/EMBOSS/acd/eprimer3.acd
943
share/EMBOSS/acd/equicktandem.acd
944
share/EMBOSS/acd/est2genome.acd
945
share/EMBOSS/acd/etandem.acd
946
share/EMBOSS/acd/extractseq.acd
947
share/EMBOSS/acd/extractfeat.acd
948
share/EMBOSS/acd/findkm.acd
949
share/EMBOSS/acd/freak.acd
950
share/EMBOSS/acd/fuzznuc.acd
951
share/EMBOSS/acd/fuzzpro.acd
952
share/EMBOSS/acd/fuzztran.acd
953
share/EMBOSS/acd/garnier.acd
954
share/EMBOSS/acd/geecee.acd
955
share/EMBOSS/acd/getorf.acd
956
share/EMBOSS/acd/helixturnhelix.acd
957
share/EMBOSS/acd/hmoment.acd
958
share/EMBOSS/acd/histogramtest.acd
959
share/EMBOSS/acd/infoalign.acd
960
share/EMBOSS/acd/infoseq.acd
961
share/EMBOSS/acd/isochore.acd
962
share/EMBOSS/acd/lindna.acd
963
share/EMBOSS/acd/listor.acd
964
share/EMBOSS/acd/marscan.acd
965
share/EMBOSS/acd/maskfeat.acd
966
share/EMBOSS/acd/maskseq.acd
967
share/EMBOSS/acd/matcher.acd
968
share/EMBOSS/data/AAINDEX/dummyfile
447
share/EMBOSS/data/CODONS/Eacc.cut
969
share/EMBOSS/data/CODONS/Eacc.cut
448
share/EMBOSS/data/CODONS/Eadenovirus5.cut
970
share/EMBOSS/data/CODONS/Eadenovirus5.cut
449
share/EMBOSS/data/CODONS/Eadenovirus7.cut
971
share/EMBOSS/data/CODONS/Eadenovirus7.cut
Lines 491-500 Link Here
491
share/EMBOSS/data/CODONS/Edro_h.cut
1013
share/EMBOSS/data/CODONS/Edro_h.cut
492
share/EMBOSS/data/CODONS/Edrosophila.cut
1014
share/EMBOSS/data/CODONS/Edrosophila.cut
493
share/EMBOSS/data/CODONS/Eeca.cut
1015
share/EMBOSS/data/CODONS/Eeca.cut
1016
share/EMBOSS/data/CODONS/Ef1.cut
494
share/EMBOSS/data/CODONS/Eeco.cut
1017
share/EMBOSS/data/CODONS/Eeco.cut
495
share/EMBOSS/data/CODONS/Eeco_h.cut
1018
share/EMBOSS/data/CODONS/Eeco_h.cut
496
share/EMBOSS/data/CODONS/Eecoli.cut
1019
share/EMBOSS/data/CODONS/Eecoli.cut
497
share/EMBOSS/data/CODONS/Ef1.cut
498
share/EMBOSS/data/CODONS/Efish.cut
1020
share/EMBOSS/data/CODONS/Efish.cut
499
share/EMBOSS/data/CODONS/Efmdvpolyp.cut
1021
share/EMBOSS/data/CODONS/Efmdvpolyp.cut
500
share/EMBOSS/data/CODONS/Eham.cut
1022
share/EMBOSS/data/CODONS/Eham.cut
Lines 595-600 Link Here
595
share/EMBOSS/data/CODONS/Eysp.cut
1117
share/EMBOSS/data/CODONS/Eysp.cut
596
share/EMBOSS/data/CODONS/Ezebrafish.cut
1118
share/EMBOSS/data/CODONS/Ezebrafish.cut
597
share/EMBOSS/data/CODONS/Ezma.cut
1119
share/EMBOSS/data/CODONS/Ezma.cut
1120
share/EMBOSS/data/REBASE/dummyfile
1121
share/EMBOSS/data/PRINTS/dummyfile
1122
share/EMBOSS/data/PROSITE/dummyfile
598
share/EMBOSS/data/EBLOSUM30
1123
share/EMBOSS/data/EBLOSUM30
599
share/EMBOSS/data/EBLOSUM35
1124
share/EMBOSS/data/EBLOSUM35
600
share/EMBOSS/data/EBLOSUM40
1125
share/EMBOSS/data/EBLOSUM40
Lines 720-922 Link Here
720
share/EMBOSS/data/Etags.pir
1245
share/EMBOSS/data/Etags.pir
721
share/EMBOSS/data/Etags.protein
1246
share/EMBOSS/data/Etags.protein
722
share/EMBOSS/data/Etags.swiss
1247
share/EMBOSS/data/Etags.swiss
1248
share/EMBOSS/data/Etcode.dat
1249
share/EMBOSS/data/Evdw.dat
723
share/EMBOSS/data/Ewhite-wimley.dat
1250
share/EMBOSS/data/Ewhite-wimley.dat
724
share/EMBOSS/data/PRINTS/dummyfile
725
share/EMBOSS/data/PROSITE/dummyfile
726
share/EMBOSS/data/REBASE/dummyfile
727
share/EMBOSS/data/embossre.equ
1251
share/EMBOSS/data/embossre.equ
1252
share/EMBOSS/data/Emwfilter.dat
1253
share/EMBOSS/data/Emass.dat
1254
share/EMBOSS/data/Emassmod.dat
728
share/EMBOSS/emboss.default.template
1255
share/EMBOSS/emboss.default.template
729
share/EMBOSS/jemboss/README
1256
share/EMBOSS/test/data/aaindex1.test
730
share/EMBOSS/jemboss/LICENSE
1257
share/EMBOSS/test/data/prosite.dat
731
share/EMBOSS/jemboss/api/allclasses-frame.html
1258
share/EMBOSS/test/data/prosite.doc
732
share/EMBOSS/jemboss/api/deprecated-list.html
1259
share/EMBOSS/test/data/prints.test
733
share/EMBOSS/jemboss/api/getClasses.pl
1260
share/EMBOSS/test/data/withrefm
734
share/EMBOSS/jemboss/api/help-doc.html
1261
share/EMBOSS/test/data/site.dat
735
share/EMBOSS/jemboss/api/index-all.html
1262
share/EMBOSS/test/data/cutg.codon
736
share/EMBOSS/jemboss/api/index.html
737
share/EMBOSS/jemboss/api/makeDocs.csh
738
share/EMBOSS/jemboss/api/org/emboss/jemboss/Jemboss.html
739
share/EMBOSS/jemboss/api/org/emboss/jemboss/Jemboss.winExit.html
740
share/EMBOSS/jemboss/api/org/emboss/jemboss/JembossLogo.html
741
share/EMBOSS/jemboss/api/org/emboss/jemboss/JembossParams.html
742
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/BuildProgramMenu.html
743
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ResultsMenuBar.html
744
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/SetUpMenuBar.html
745
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ShowResultSet.html
746
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ShowSavedResults.html
747
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/SwingWorker.html
748
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/DragTree.html
749
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileEditorDisplay.PopupListener.html
750
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileEditorDisplay.html
751
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileNode.html
752
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileSaving.html
753
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/BuildJembossForm.html
754
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/ListFilePanel.html
755
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SectionPanel.html
756
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SetInFileCard.html
757
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SetOutFileCard.html
758
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldFloat.DecimalNumberDocument.html
759
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldFloat.html
760
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldInt.WholeNumberDocument.html
761
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldInt.html
762
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldSink.html
763
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/myComboPopup.html
764
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/myComboPopup.myComboUI.html
765
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/CutNPasteTextArea.html
766
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/FileChooser.html
767
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/InputSequenceAttributes.html
768
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/OutputSequenceAttributes.html
769
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/SequenceFilter.html
770
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/TextAreaSink.html
771
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/Database.html
772
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/ProgList.HorizontalMenu.html
773
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/ProgList.html
774
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/Splash.html
775
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/AcdFunResolve.html
776
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/AcdVarResolve.html
777
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/Ajax.html
778
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/Dependent.html
779
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/ParseAcd.html
780
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd/Application.html
781
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd/ApplicationFields.html
782
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd/ApplicationParam.html
783
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/JembossProcess.html
784
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/ListFile.html
785
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/ResultList.html
786
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/RunEmbossApplication.html
787
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/AuthPopup.html
788
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/CallAjax.html
789
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/GetWossname.html
790
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/JembossRun.html
791
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/JembossSoapException.html
792
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/PendingResults.html
793
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/PrivateRequest.html
794
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/ResListView.html
795
share/EMBOSS/jemboss/api/overview-tree.html
796
share/EMBOSS/jemboss/api/package-list
797
share/EMBOSS/jemboss/api/packages.html
798
share/EMBOSS/jemboss/api/serialized-form.html
799
share/EMBOSS/jemboss/api/stylesheet.css
800
share/EMBOSS/jemboss/images/Backward_arrow_button.gif
801
share/EMBOSS/jemboss/images/Forward_arrow_button.gif
802
share/EMBOSS/jemboss/images/Go_button.gif
803
share/EMBOSS/jemboss/images/Information_button.gif
804
share/EMBOSS/jemboss/images/Jemboss_logo_greyback.gif
805
share/EMBOSS/jemboss/images/Jemboss_logo_large.gif
806
share/EMBOSS/jemboss/images/Jemboss_logo_small.gif
807
share/EMBOSS/jemboss/images/Job_manager_button.gif
808
share/EMBOSS/jemboss/images/Refresh_button.gif
809
share/EMBOSS/jemboss/images/Refresh_button2.gif
810
share/EMBOSS/jemboss/lib/README
811
share/EMBOSS/jemboss/lib/activation.jar
812
share/EMBOSS/jemboss/lib/jakarta-regexp-1.2.jar
813
share/EMBOSS/jemboss/lib/jalview.jar
814
share/EMBOSS/jemboss/lib/mail.jar
815
share/EMBOSS/jemboss/lib/soap.jar
816
share/EMBOSS/jemboss/lib/xerces.jar
817
share/EMBOSS/jemboss/lib/jcert.jar
818
share/EMBOSS/jemboss/lib/jnet.jar
819
share/EMBOSS/jemboss/lib/jsse.jar
820
share/EMBOSS/jemboss/org/emboss/jemboss/Jemboss.java
821
share/EMBOSS/jemboss/org/emboss/jemboss/JembossLogo.java
822
share/EMBOSS/jemboss/org/emboss/jemboss/JembossParams.java
823
share/EMBOSS/jemboss/org/emboss/jemboss/JembossJarUtil.java
824
share/EMBOSS/jemboss/org/emboss/jemboss/gui/AdvancedOptions.java
825
share/EMBOSS/jemboss/org/emboss/jemboss/gui/BuildProgramMenu.java
826
share/EMBOSS/jemboss/org/emboss/jemboss/gui/LaunchJalView.java
827
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ResultsMenuBar.java
828
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SetUpMenuBar.java
829
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ShowResultSet.java
830
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ShowSavedResults.java
831
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SwingWorker.java
832
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SequenceData.java
833
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SequenceList.java
834
share/EMBOSS/jemboss/org/emboss/jemboss/gui/MemoryComboBox.java
835
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/DragTree.java
836
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileEditorDisplay.java
837
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileNode.java
838
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileSave.java
839
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileSaving.java
840
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteDragTree.java
841
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteFileNode.java
842
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteFileTreePanel.java
843
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/BuildJembossForm.java
844
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/ListFilePanel.java
845
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/MultiLineToolTipUI.java
846
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/PlafMacros.java
847
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SectionPanel.java
848
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/Separator.java
849
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SetInFileCard.java
850
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SetOutFileCard.java
851
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldFloat.java
852
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldInt.java
853
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldSink.java
854
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/myComboPopup.java
855
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/CutNPasteTextArea.java
856
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/FileChooser.java
857
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/InputSequenceAttributes.java
858
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/OutputSequenceAttributes.java
859
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/SequenceFilter.java
860
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/TextAreaSink.java
861
share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup/Database.java
862
share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup/ProgList.java
863
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdFunResolve.java
864
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdVarResolve.java
865
share/EMBOSS/jemboss/org/emboss/jemboss/parser/Ajax.java
866
share/EMBOSS/jemboss/org/emboss/jemboss/parser/Dependent.java
867
share/EMBOSS/jemboss/org/emboss/jemboss/parser/ParseAcd.java
868
share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd/Application.java
869
share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd/ApplicationFields.java
870
share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd/ApplicationParam.java
871
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdVariableResolve.java
872
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AjaxUtil.java
873
share/EMBOSS/jemboss/org/emboss/jemboss/programs/BatchUpdateTimer.java
874
share/EMBOSS/jemboss/org/emboss/jemboss/programs/JembossProcess.java
875
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ListFile.java
876
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ResultList.java
877
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ResultsUpdateTimer.java
878
share/EMBOSS/jemboss/org/emboss/jemboss/programs/RunEmbossApplication.java
879
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossServer.java
880
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossFileServer.java
881
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossThread.java
882
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossAuthServer.java
883
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossAuthThread.java
884
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossFileAuthServer.java
885
share/EMBOSS/jemboss/org/emboss/jemboss/server/TestPublicServer.java
886
share/EMBOSS/jemboss/org/emboss/jemboss/soap/AuthPopup.java
887
share/EMBOSS/jemboss/org/emboss/jemboss/soap/CallAjax.java
888
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetWossname.java
889
share/EMBOSS/jemboss/org/emboss/jemboss/soap/JembossRun.java
890
share/EMBOSS/jemboss/org/emboss/jemboss/soap/JembossSoapException.java
891
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PendingResults.java
892
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PrivateRequest.java
893
share/EMBOSS/jemboss/org/emboss/jemboss/soap/ServerSetup.java
894
share/EMBOSS/jemboss/org/emboss/jemboss/soap/FileRoots.java
895
share/EMBOSS/jemboss/org/emboss/jemboss/soap/FileList.java
896
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PublicRequest.java
897
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetACD.java
898
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetHelp.java
899
share/EMBOSS/jemboss/org/emboss/jemboss/soap/ShowDB.java
900
share/EMBOSS/jemboss/org/emboss/jemboss/soap/MakeFileSafe.java
901
share/EMBOSS/jemboss/utils/install-jemboss-server.sh
902
share/EMBOSS/jemboss/utils/keys.sh
903
share/EMBOSS/jemboss/utils/makeJNLP.sh
904
share/EMBOSS/jemboss/utils/template.html
905
share/EMBOSS/jemboss/utils/README
906
share/EMBOSS/jemboss/utils/makeJar.csh
907
share/EMBOSS/jemboss/readme.html
908
share/EMBOSS/jemboss/resources/jemboss.properties
909
share/EMBOSS/jemboss/resources/readme.txt
910
share/EMBOSS/jemboss/resources/version
911
share/EMBOSS/jemboss/runJemboss.csh
912
share/EMBOSS/plstnd5.fnt
913
share/EMBOSS/plxtnd5.fnt
914
share/EMBOSS/test/data/aligna.dna
915
share/EMBOSS/test/data/aligna.prot
916
share/EMBOSS/test/data/alignapart.dna
917
share/EMBOSS/test/data/alignapart.prot
918
share/EMBOSS/test/data/alignb.dna
919
share/EMBOSS/test/data/alignb.prot
920
share/EMBOSS/test/data/dna.acedb
1263
share/EMBOSS/test/data/dna.acedb
921
share/EMBOSS/test/data/dna.aln
1264
share/EMBOSS/test/data/dna.aln
922
share/EMBOSS/test/data/dna.asn1
1265
share/EMBOSS/test/data/dna.asn1
Lines 946-951 Link Here
946
share/EMBOSS/test/data/feat.emft
1289
share/EMBOSS/test/data/feat.emft
947
share/EMBOSS/test/data/feat.fasta
1290
share/EMBOSS/test/data/feat.fasta
948
share/EMBOSS/test/data/feat.pir
1291
share/EMBOSS/test/data/feat.pir
1292
share/EMBOSS/test/data/mw1.dat
1293
share/EMBOSS/test/data/mw2.dat
1294
share/EMBOSS/test/data/mw3.dat
949
share/EMBOSS/test/data/paamir.pep
1295
share/EMBOSS/test/data/paamir.pep
950
share/EMBOSS/test/data/pax6_cdna.fasta
1296
share/EMBOSS/test/data/pax6_cdna.fasta
951
share/EMBOSS/test/data/prot.acedb
1297
share/EMBOSS/test/data/prot.acedb
Lines 964-992 Link Here
964
share/EMBOSS/test/data/prot.ncbi
1310
share/EMBOSS/test/data/prot.ncbi
965
share/EMBOSS/test/data/prot.swiss
1311
share/EMBOSS/test/data/prot.swiss
966
share/EMBOSS/test/data/prot.text
1312
share/EMBOSS/test/data/prot.text
1313
share/EMBOSS/test/data/z83307.seq
1314
share/EMBOSS/test/data/aligna.dna
1315
share/EMBOSS/test/data/alignapart.dna
1316
share/EMBOSS/test/data/alignb.dna
1317
share/EMBOSS/test/data/aligna.prot
1318
share/EMBOSS/test/data/alignapart.prot
1319
share/EMBOSS/test/data/alignb.prot
967
share/EMBOSS/test/data/tranalign.pep
1320
share/EMBOSS/test/data/tranalign.pep
968
share/EMBOSS/test/data/tranalign.seq
1321
share/EMBOSS/test/data/tranalign.seq
969
share/EMBOSS/test/data/z83307.seq
970
share/EMBOSS/test/embl/acnum.hit
1322
share/EMBOSS/test/embl/acnum.hit
971
share/EMBOSS/test/embl/acnum.trg
1323
share/EMBOSS/test/embl/acnum.trg
972
share/EMBOSS/test/embl/des.hit
973
share/EMBOSS/test/embl/des.trg
974
share/EMBOSS/test/embl/division.lkp
1324
share/EMBOSS/test/embl/division.lkp
975
share/EMBOSS/test/embl/entrynam.idx
1325
share/EMBOSS/test/embl/entrynam.idx
1326
share/EMBOSS/test/embl/seqvn.hit
1327
share/EMBOSS/test/embl/seqvn.trg
1328
share/EMBOSS/test/embl/des.hit
1329
share/EMBOSS/test/embl/des.trg
1330
share/EMBOSS/test/embl/keyword.hit
1331
share/EMBOSS/test/embl/keyword.trg
1332
share/EMBOSS/test/embl/taxon.hit
1333
share/EMBOSS/test/embl/taxon.trg
976
share/EMBOSS/test/embl/est.dat
1334
share/EMBOSS/test/embl/est.dat
977
share/EMBOSS/test/embl/fun.dat
1335
share/EMBOSS/test/embl/fun.dat
978
share/EMBOSS/test/embl/hum1.dat
1336
share/EMBOSS/test/embl/hum1.dat
979
share/EMBOSS/test/embl/inv.dat
1337
share/EMBOSS/test/embl/inv.dat
980
share/EMBOSS/test/embl/keyword.hit
981
share/EMBOSS/test/embl/keyword.trg
982
share/EMBOSS/test/embl/pln.dat
1338
share/EMBOSS/test/embl/pln.dat
983
share/EMBOSS/test/embl/pro.dat
1339
share/EMBOSS/test/embl/pro.dat
984
share/EMBOSS/test/embl/rod.dat
1340
share/EMBOSS/test/embl/rod.dat
985
share/EMBOSS/test/embl/seqvn.hit
986
share/EMBOSS/test/embl/seqvn.trg
987
share/EMBOSS/test/embl/sts.dat
1341
share/EMBOSS/test/embl/sts.dat
988
share/EMBOSS/test/embl/taxon.hit
989
share/EMBOSS/test/embl/taxon.trg
990
share/EMBOSS/test/embl/vrl.dat
1342
share/EMBOSS/test/embl/vrl.dat
991
share/EMBOSS/test/embl/vrt.dat
1343
share/EMBOSS/test/embl/vrt.dat
992
share/EMBOSS/test/genbank/acnum.hit
1344
share/EMBOSS/test/genbank/acnum.hit
Lines 1029-1038 Link Here
1029
share/EMBOSS/test/gb/htg.seq
1381
share/EMBOSS/test/gb/htg.seq
1030
share/EMBOSS/test/pir/acnum.hit
1382
share/EMBOSS/test/pir/acnum.hit
1031
share/EMBOSS/test/pir/acnum.trg
1383
share/EMBOSS/test/pir/acnum.trg
1032
share/EMBOSS/test/pir/des.hit
1033
share/EMBOSS/test/pir/des.trg
1034
share/EMBOSS/test/pir/division.lkp
1384
share/EMBOSS/test/pir/division.lkp
1035
share/EMBOSS/test/pir/entrynam.idx
1385
share/EMBOSS/test/pir/entrynam.idx
1386
share/EMBOSS/test/pir/des.hit
1387
share/EMBOSS/test/pir/des.trg
1036
share/EMBOSS/test/pir/keyword.hit
1388
share/EMBOSS/test/pir/keyword.hit
1037
share/EMBOSS/test/pir/keyword.trg
1389
share/EMBOSS/test/pir/keyword.trg
1038
share/EMBOSS/test/pir/taxon.hit
1390
share/EMBOSS/test/pir/taxon.hit
Lines 1061-1071 Link Here
1061
share/EMBOSS/test/pir/pir4.offset
1413
share/EMBOSS/test/pir/pir4.offset
1062
share/EMBOSS/test/pir/pir4.ref
1414
share/EMBOSS/test/pir/pir4.ref
1063
share/EMBOSS/test/pir/pir4.seq
1415
share/EMBOSS/test/pir/pir4.seq
1416
share/EMBOSS/test/swiss/seq.dat
1064
share/EMBOSS/test/swiss/acnum.hit
1417
share/EMBOSS/test/swiss/acnum.hit
1065
share/EMBOSS/test/swiss/acnum.trg
1418
share/EMBOSS/test/swiss/acnum.trg
1066
share/EMBOSS/test/swiss/division.lkp
1419
share/EMBOSS/test/swiss/division.lkp
1067
share/EMBOSS/test/swiss/entrynam.idx
1420
share/EMBOSS/test/swiss/entrynam.idx
1068
share/EMBOSS/test/swiss/seq.dat
1069
share/EMBOSS/test/swiss/seqvn.hit
1421
share/EMBOSS/test/swiss/seqvn.hit
1070
share/EMBOSS/test/swiss/seqvn.trg
1422
share/EMBOSS/test/swiss/seqvn.trg
1071
share/EMBOSS/test/swiss/des.hit
1423
share/EMBOSS/test/swiss/des.hit
Lines 1078-1086 Link Here
1078
share/EMBOSS/test/swnew/acnum.trg
1430
share/EMBOSS/test/swnew/acnum.trg
1079
share/EMBOSS/test/swnew/division.lkp
1431
share/EMBOSS/test/swnew/division.lkp
1080
share/EMBOSS/test/swnew/entrynam.idx
1432
share/EMBOSS/test/swnew/entrynam.idx
1081
share/EMBOSS/test/swnew/new_seq.dat
1082
share/EMBOSS/test/swnew/upd_ann.dat
1083
share/EMBOSS/test/swnew/upd_seq.dat
1084
share/EMBOSS/test/swnew/seqvn.hit
1433
share/EMBOSS/test/swnew/seqvn.hit
1085
share/EMBOSS/test/swnew/seqvn.trg
1434
share/EMBOSS/test/swnew/seqvn.trg
1086
share/EMBOSS/test/swnew/des.hit
1435
share/EMBOSS/test/swnew/des.hit
Lines 1089-1680 Link Here
1089
share/EMBOSS/test/swnew/keyword.trg
1438
share/EMBOSS/test/swnew/keyword.trg
1090
share/EMBOSS/test/swnew/taxon.hit
1439
share/EMBOSS/test/swnew/taxon.hit
1091
share/EMBOSS/test/swnew/taxon.trg
1440
share/EMBOSS/test/swnew/taxon.trg
1441
share/EMBOSS/test/swnew/new_seq.dat
1442
share/EMBOSS/test/swnew/upd_ann.dat
1443
share/EMBOSS/test/swnew/upd_seq.dat
1444
share/EMBOSS/test/wormpep/wormpep
1092
share/EMBOSS/test/wormpep/acnum.hit
1445
share/EMBOSS/test/wormpep/acnum.hit
1093
share/EMBOSS/test/wormpep/acnum.trg
1446
share/EMBOSS/test/wormpep/acnum.trg
1094
share/EMBOSS/test/wormpep/division.lkp
1447
share/EMBOSS/test/wormpep/division.lkp
1095
share/EMBOSS/test/wormpep/entrynam.idx
1448
share/EMBOSS/test/wormpep/entrynam.idx
1096
share/EMBOSS/test/wormpep/wormpep
1097
share/EMBOSS/test/wormpep/des.hit
1449
share/EMBOSS/test/wormpep/des.hit
1098
share/EMBOSS/test/wormpep/des.trg
1450
share/EMBOSS/test/wormpep/des.trg
1099
share/doc/EMBOSS/manuals/EMBOSS-FreeBSD-HOWTO.txt
1451
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/DragTree.html
1100
share/doc/EMBOSS/manuals/admin.aux
1452
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileEditorDisplay.PopupListener.html
1101
share/doc/EMBOSS/manuals/admin.dvi
1453
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileEditorDisplay.html
1102
share/doc/EMBOSS/manuals/admin.log
1454
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileNode.html
1103
share/doc/EMBOSS/manuals/admin.pdf
1455
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree/FileSaving.html
1104
share/doc/EMBOSS/manuals/admin.ps
1456
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/BuildJembossForm.html
1105
share/doc/EMBOSS/manuals/admin.sty
1457
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/ListFilePanel.html
1106
share/doc/EMBOSS/manuals/admin.tex
1458
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SectionPanel.html
1107
share/doc/EMBOSS/manuals/admin.toc
1459
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SetInFileCard.html
1108
share/doc/EMBOSS/manuals/adminguide.tar.gz
1460
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/SetOutFileCard.html
1109
share/doc/EMBOSS/manuals/emboss_qg.pdf
1461
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldFloat.DecimalNumberDocument.html
1110
share/doc/EMBOSS/manuals/emboss_qg.ps
1462
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldFloat.html
1111
share/doc/EMBOSS/manuals/program.ps.gz
1463
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldInt.WholeNumberDocument.html
1112
share/doc/EMBOSS/programs/html/abiview.html
1464
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldInt.html
1113
share/doc/EMBOSS/programs/html/abiview0.gif
1465
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/TextFieldSink.html
1114
share/doc/EMBOSS/programs/html/ajtest.html
1466
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/JembossComboPopup.html
1115
share/doc/EMBOSS/programs/html/alignment_consensus_group.html
1467
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form/JembossComboPopup.myComboUI.html
1116
share/doc/EMBOSS/programs/html/alignment_differences_group.html
1468
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/CutNPasteTextArea.html
1117
share/doc/EMBOSS/programs/html/alignment_dot_plots_group.html
1469
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/FileChooser.html
1118
share/doc/EMBOSS/programs/html/alignment_global_group.html
1470
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/InputSequenceAttributes.html
1119
share/doc/EMBOSS/programs/html/alignment_local_group.html
1471
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/OutputSequenceAttributes.html
1120
share/doc/EMBOSS/programs/html/alignment_multiple_group.html
1472
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/SequenceFilter.html
1121
share/doc/EMBOSS/programs/html/antigenic.html
1473
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser/TextAreaSink.html
1122
share/doc/EMBOSS/programs/html/backtranseq.html
1474
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/Database.html
1123
share/doc/EMBOSS/programs/html/banana.html
1475
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/ProgList.HorizontalMenu.html
1124
share/doc/EMBOSS/programs/html/banana0.gif
1476
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/ProgList.html
1125
share/doc/EMBOSS/programs/html/biosed.html
1477
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup/Splash.html
1126
share/doc/EMBOSS/programs/html/btwisted.html
1478
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/BuildProgramMenu.html
1127
share/doc/EMBOSS/programs/html/cai.html
1479
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ResultsMenuBar.html
1128
share/doc/EMBOSS/programs/html/chaos.html
1480
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/SetUpMenuBar.html
1129
share/doc/EMBOSS/programs/html/chaos0.gif
1481
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ShowResultSet.html
1130
share/doc/EMBOSS/programs/html/charge.html
1482
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/ShowSavedResults.html
1131
share/doc/EMBOSS/programs/html/checktrans.html
1483
share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/SwingWorker.html
1132
share/doc/EMBOSS/programs/html/chips.html
1484
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd/ApplicationFields.html
1133
share/doc/EMBOSS/programs/html/cirdna.html
1485
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd/ApplicationParam.html
1134
share/doc/EMBOSS/programs/html/clique.html
1486
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/AcdFunResolve.html
1135
share/doc/EMBOSS/programs/html/codcmp.html
1487
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/AcdVarResolve.html
1136
share/doc/EMBOSS/programs/html/coderet.html
1488
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/Ajax.html
1137
share/doc/EMBOSS/programs/html/compseq.html
1489
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/Dependent.html
1138
share/doc/EMBOSS/programs/html/cons.html
1490
share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/ParseAcd.html
1139
share/doc/EMBOSS/programs/html/consense.html
1491
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/JembossProcess.html
1140
share/doc/EMBOSS/programs/html/contacts.html
1492
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/ListFile.html
1141
share/doc/EMBOSS/programs/html/contml.html
1493
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/ResultList.html
1142
share/doc/EMBOSS/programs/html/contrast.html
1494
share/EMBOSS/jemboss/api/org/emboss/jemboss/programs/RunEmbossApplication.html
1143
share/doc/EMBOSS/programs/html/cpgplot.html
1495
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/AuthPopup.html
1144
share/doc/EMBOSS/programs/html/cpgplot0.gif
1496
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/CallAjax.html
1145
share/doc/EMBOSS/programs/html/cpgreport.html
1497
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/GetWossname.html
1146
share/doc/EMBOSS/programs/html/cusp.html
1498
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/JembossRun.html
1147
share/doc/EMBOSS/programs/html/cutgextract.html
1499
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/JembossSoapException.html
1148
share/doc/EMBOSS/programs/html/cutseq.html
1500
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/PendingResults.html
1149
share/doc/EMBOSS/programs/html/dan.html
1501
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/PrivateRequest.html
1150
share/doc/EMBOSS/programs/html/dbiblast.html
1502
share/EMBOSS/jemboss/api/org/emboss/jemboss/soap/ResListView.html
1151
share/doc/EMBOSS/programs/html/dbifasta.html
1503
share/EMBOSS/jemboss/api/org/emboss/jemboss/Jemboss.html
1152
share/doc/EMBOSS/programs/html/dbiflat.html
1504
share/EMBOSS/jemboss/api/org/emboss/jemboss/Jemboss.winExit.html
1153
share/doc/EMBOSS/programs/html/dbigcg.html
1505
share/EMBOSS/jemboss/api/org/emboss/jemboss/JembossLogo.html
1154
share/doc/EMBOSS/programs/html/degapseq.html
1506
share/EMBOSS/jemboss/api/org/emboss/jemboss/JembossParams.html
1155
share/doc/EMBOSS/programs/html/descseq.html
1507
share/EMBOSS/jemboss/api/allclasses-frame.html
1156
share/doc/EMBOSS/programs/html/diffseq.html
1508
share/EMBOSS/jemboss/api/deprecated-list.html
1157
share/doc/EMBOSS/programs/html/digest.html
1509
share/EMBOSS/jemboss/api/getClasses.pl
1158
share/doc/EMBOSS/programs/html/display_group.html
1510
share/EMBOSS/jemboss/api/help-doc.html
1159
share/doc/EMBOSS/programs/html/distmat.html
1511
share/EMBOSS/jemboss/api/index-all.html
1160
share/doc/EMBOSS/programs/html/dnacomp.html
1512
share/EMBOSS/jemboss/api/index.html
1161
share/doc/EMBOSS/programs/html/dnadist.html
1513
share/EMBOSS/jemboss/api/makeDocs.csh
1162
share/doc/EMBOSS/programs/html/dnainvar.html
1514
share/EMBOSS/jemboss/api/overview-tree.html
1163
share/doc/EMBOSS/programs/html/dnaml.html
1515
share/EMBOSS/jemboss/api/package-list
1164
share/doc/EMBOSS/programs/html/dnamlk.html
1516
share/EMBOSS/jemboss/api/packages.html
1165
share/doc/EMBOSS/programs/html/dnapars.html
1517
share/EMBOSS/jemboss/api/serialized-form.html
1166
share/doc/EMBOSS/programs/html/dnapenny.html
1518
share/EMBOSS/jemboss/api/stylesheet.css
1167
share/doc/EMBOSS/programs/html/dollop.html
1519
share/EMBOSS/jemboss/images/Backward_arrow_button.gif
1168
share/doc/EMBOSS/programs/html/dolpenny.html
1520
share/EMBOSS/jemboss/images/Forward_arrow_button.gif
1169
share/doc/EMBOSS/programs/html/domainer.html
1521
share/EMBOSS/jemboss/images/Go_button.gif
1170
share/doc/EMBOSS/programs/html/dotmatcher.html
1522
share/EMBOSS/jemboss/images/Information_button.gif
1171
share/doc/EMBOSS/programs/html/dotmatcher0.gif
1523
share/EMBOSS/jemboss/images/Jemboss_logo_greyback.gif
1172
share/doc/EMBOSS/programs/html/dotpath.html
1524
share/EMBOSS/jemboss/images/Jemboss_logo_large.gif
1173
share/doc/EMBOSS/programs/html/dottup.html
1525
share/EMBOSS/jemboss/images/Jemboss_logo_small.gif
1174
share/doc/EMBOSS/programs/html/dottup0.gif
1526
share/EMBOSS/jemboss/images/Job_manager_button.gif
1175
share/doc/EMBOSS/programs/html/dreg.html
1527
share/EMBOSS/jemboss/images/Refresh_button.gif
1176
share/doc/EMBOSS/programs/html/eclique.html
1528
share/EMBOSS/jemboss/images/Refresh_button2.gif
1177
share/doc/EMBOSS/programs/html/econsense.html
1529
share/EMBOSS/jemboss/lib/axis/axis-ant.jar
1178
share/doc/EMBOSS/programs/html/econtml.html
1530
share/EMBOSS/jemboss/lib/axis/axis.jar
1179
share/doc/EMBOSS/programs/html/econtrast.html
1531
share/EMBOSS/jemboss/lib/axis/commons-discovery.jar
1180
share/doc/EMBOSS/programs/html/edit_group.html
1532
share/EMBOSS/jemboss/lib/axis/commons-logging.jar
1181
share/doc/EMBOSS/programs/html/ednacomp.html
1533
share/EMBOSS/jemboss/lib/axis/jaxrpc.jar
1182
share/doc/EMBOSS/programs/html/ednadist.html
1534
share/EMBOSS/jemboss/lib/axis/log4j-1.2.8.jar
1183
share/doc/EMBOSS/programs/html/ednainvar.html
1535
share/EMBOSS/jemboss/lib/axis/saaj.jar
1184
share/doc/EMBOSS/programs/html/ednaml.html
1536
share/EMBOSS/jemboss/lib/axis/servlet.jar
1185
share/doc/EMBOSS/programs/html/ednamlk.html
1537
share/EMBOSS/jemboss/lib/axis/wsdl4j.jar
1186
share/doc/EMBOSS/programs/html/ednapars.html
1538
share/EMBOSS/jemboss/lib/README
1187
share/doc/EMBOSS/programs/html/ednapenny.html
1539
share/EMBOSS/jemboss/lib/activation.jar
1188
share/doc/EMBOSS/programs/html/edollop.html
1540
share/EMBOSS/jemboss/lib/jakarta-regexp-1.2.jar
1189
share/doc/EMBOSS/programs/html/edolpenny.html
1541
share/EMBOSS/jemboss/lib/mail.jar
1190
share/doc/EMBOSS/programs/html/efactor.html
1542
share/EMBOSS/jemboss/lib/xerces.jar
1191
share/doc/EMBOSS/programs/html/efitch.html
1543
share/EMBOSS/jemboss/lib/jalview.jar
1192
share/doc/EMBOSS/programs/html/egendist.html
1544
share/EMBOSS/jemboss/lib/jcert.jar
1193
share/doc/EMBOSS/programs/html/einverted.html
1545
share/EMBOSS/jemboss/lib/jnet.jar
1194
share/doc/EMBOSS/programs/html/ekitsch.html
1546
share/EMBOSS/jemboss/lib/jsse.jar
1195
share/doc/EMBOSS/programs/html/emboss_icon.gif
1547
share/EMBOSS/jemboss/lib/JembossPrintAlignment.jar
1196
share/doc/EMBOSS/programs/html/embossdata.html
1548
share/EMBOSS/jemboss/lib/grout.jar
1197
share/doc/EMBOSS/programs/html/embossversion.html
1549
share/EMBOSS/jemboss/org/emboss/jemboss/editor/AlignApplet.java
1198
share/doc/EMBOSS/programs/html/emix.html
1550
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutSequenceJPanel.java
1199
share/doc/EMBOSS/programs/html/emma.html
1551
share/EMBOSS/jemboss/org/emboss/jemboss/editor/AlignJFrame.java
1200
share/doc/EMBOSS/programs/html/emowse.html
1552
share/EMBOSS/jemboss/org/emboss/jemboss/editor/Matrix.java
1201
share/doc/EMBOSS/programs/html/eneighbor.html
1553
share/EMBOSS/jemboss/org/emboss/jemboss/editor/ColourJFrame.java
1202
share/doc/EMBOSS/programs/html/entret.html
1554
share/EMBOSS/jemboss/org/emboss/jemboss/editor/MatrixJFrame.java
1203
share/doc/EMBOSS/programs/html/enzyme_kinetics_group.html
1555
share/EMBOSS/jemboss/org/emboss/jemboss/editor/ColourMenu.java
1204
share/doc/EMBOSS/programs/html/epenny.html
1556
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PatternJFrame.java
1205
share/doc/EMBOSS/programs/html/eprotdist.html
1557
share/EMBOSS/jemboss/org/emboss/jemboss/editor/ColourPanel.java
1206
share/doc/EMBOSS/programs/html/eprotpars.html
1558
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PlotConsensus.java
1207
share/doc/EMBOSS/programs/html/equicktandem.html
1559
share/EMBOSS/jemboss/org/emboss/jemboss/editor/Consensus.java
1208
share/doc/EMBOSS/programs/html/erestml.html
1560
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PrettyPlotJFrame.java
1209
share/doc/EMBOSS/programs/html/eseqboot.html
1561
share/EMBOSS/jemboss/org/emboss/jemboss/editor/ConsensusOptions.java
1210
share/doc/EMBOSS/programs/html/est2genome.html
1562
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PrintAlignmentImage.java
1211
share/doc/EMBOSS/programs/html/etandem.html
1563
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GraphicSequenceCollection.java
1212
share/doc/EMBOSS/programs/html/extractfeat.html
1564
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PrintAlignment.java
1213
share/doc/EMBOSS/programs/html/extractseq.html
1565
share/EMBOSS/jemboss/org/emboss/jemboss/editor/Paste.java
1214
share/doc/EMBOSS/programs/html/factor.html
1566
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutAlignJFrameEvent.java
1215
share/doc/EMBOSS/programs/html/feature_tables_group.html
1567
share/EMBOSS/jemboss/org/emboss/jemboss/editor/Sequence.java
1216
share/doc/EMBOSS/programs/html/findkm.html
1568
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutAlignJFrame.java
1217
share/doc/EMBOSS/programs/html/findkm0.gif
1569
share/EMBOSS/jemboss/org/emboss/jemboss/editor/SequenceJPanel.java
1218
share/doc/EMBOSS/programs/html/fitch.html
1570
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutAlignJFrameListener.java
1219
share/doc/EMBOSS/programs/html/freak.html
1571
share/EMBOSS/jemboss/org/emboss/jemboss/editor/SequenceNameJButton.java
1220
share/doc/EMBOSS/programs/html/fuzznuc.html
1572
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutGraphicSequenceCollectionEvent.java
1221
share/doc/EMBOSS/programs/html/fuzzpro.html
1573
share/EMBOSS/jemboss/org/emboss/jemboss/editor/SequenceProperties.java
1222
share/doc/EMBOSS/programs/html/fuzztran.html
1574
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutGraphicSequenceCollection.java
1223
share/doc/EMBOSS/programs/html/garnier.html
1575
share/EMBOSS/jemboss/org/emboss/jemboss/editor/SequenceReader.java
1224
share/doc/EMBOSS/programs/html/geecee.html
1576
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutGraphicSequenceCollectionListener.java
1225
share/doc/EMBOSS/programs/html/gendist.html
1577
share/EMBOSS/jemboss/org/emboss/jemboss/editor/SequenceSaver.java
1226
share/doc/EMBOSS/programs/html/getorf.html
1578
share/EMBOSS/jemboss/org/emboss/jemboss/editor/GroutSequence.java
1227
share/doc/EMBOSS/programs/html/groups.html
1579
share/EMBOSS/jemboss/org/emboss/jemboss/editor/IDTableJFrame.java
1228
share/doc/EMBOSS/programs/html/helixturnhelix.html
1580
share/EMBOSS/jemboss/org/emboss/jemboss/editor/PrintableJTable.java
1229
share/doc/EMBOSS/programs/html/hmoment.html
1581
share/EMBOSS/jemboss/org/emboss/jemboss/draw/Block.java
1230
share/doc/EMBOSS/programs/html/iep.html
1582
share/EMBOSS/jemboss/org/emboss/jemboss/draw/PrintDNAImage.java
1231
share/doc/EMBOSS/programs/html/index.html
1583
share/EMBOSS/jemboss/org/emboss/jemboss/draw/DNADraw.java
1232
share/doc/EMBOSS/programs/html/infoalign.html
1584
share/EMBOSS/jemboss/org/emboss/jemboss/draw/RestrictionEnzyme.java
1233
share/doc/EMBOSS/programs/html/information_group.html
1585
share/EMBOSS/jemboss/org/emboss/jemboss/draw/EmbossCirdnaReader.java
1234
share/doc/EMBOSS/programs/html/infoseq.html
1586
share/EMBOSS/jemboss/org/emboss/jemboss/draw/Ticks.java
1235
share/doc/EMBOSS/programs/html/isochore.html
1587
share/EMBOSS/jemboss/org/emboss/jemboss/draw/GeneticMarker.java
1236
share/doc/EMBOSS/programs/html/isochore0.gif
1588
share/EMBOSS/jemboss/org/emboss/jemboss/draw/Wizard.java
1237
share/doc/EMBOSS/programs/html/kitsch.html
1589
share/EMBOSS/jemboss/org/emboss/jemboss/draw/LineAttribute.java
1238
share/doc/EMBOSS/programs/html/lindna.gif
1590
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/DragTree.java
1239
share/doc/EMBOSS/programs/html/lindna.html
1591
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileEditorDisplay.java
1240
share/doc/EMBOSS/programs/html/listor.html
1592
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileNode.java
1241
share/doc/EMBOSS/programs/html/marscan.html
1593
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileSave.java
1242
share/doc/EMBOSS/programs/html/maskfeat.html
1594
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/FileSaving.java
1243
share/doc/EMBOSS/programs/html/maskseq.html
1595
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteDragTree.java
1244
share/doc/EMBOSS/programs/html/matcher.html
1596
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteFileNode.java
1245
share/doc/EMBOSS/programs/html/megamerger.html
1597
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/RemoteFileTreePanel.java
1246
share/doc/EMBOSS/programs/html/menus_group.html
1598
share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree/LocalAndRemoteFileTreeFrame.java
1247
share/doc/EMBOSS/programs/html/merger.html
1599
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/BuildJembossForm.java
1248
share/doc/EMBOSS/programs/html/mix.html
1600
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/ListFilePanel.java
1249
share/doc/EMBOSS/programs/html/msbar.html
1601
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SectionPanel.java
1250
share/doc/EMBOSS/programs/html/mse.html
1602
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SetInFileCard.java
1251
share/doc/EMBOSS/programs/html/mwfilter.html
1603
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/SetOutFileCard.java
1252
share/doc/EMBOSS/programs/html/needle.html
1604
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldFloat.java
1253
share/doc/EMBOSS/programs/html/neighbor.html
1605
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldInt.java
1254
share/doc/EMBOSS/programs/html/newcpgreport.html
1606
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/TextFieldSink.java
1255
share/doc/EMBOSS/programs/html/newcpgseek.html
1607
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/JembossComboPopup.java
1256
share/doc/EMBOSS/programs/html/newseq.html
1608
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/MultiLineToolTipUI.java
1257
share/doc/EMBOSS/programs/html/noreturn.html
1609
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/PlafMacros.java
1258
share/doc/EMBOSS/programs/html/notseq.html
1610
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/ReportFormat.java
1259
share/doc/EMBOSS/programs/html/nrscope.html
1611
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/AlignFormat.java
1260
share/doc/EMBOSS/programs/html/nthseq.html
1612
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/ApplicationNamePanel.java
1261
share/doc/EMBOSS/programs/html/nucleic_2d_structure_group.html
1613
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/LabelTextBox.java
1262
share/doc/EMBOSS/programs/html/nucleic_codon_usage_group.html
1614
share/EMBOSS/jemboss/org/emboss/jemboss/gui/form/Separator.java
1263
share/doc/EMBOSS/programs/html/nucleic_composition_group.html
1615
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/CutNPasteTextArea.java
1264
share/doc/EMBOSS/programs/html/nucleic_cpg_islands_group.html
1616
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/FileChooser.java
1265
share/doc/EMBOSS/programs/html/nucleic_gene_finding_group.html
1617
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/InputSequenceAttributes.java
1266
share/doc/EMBOSS/programs/html/nucleic_motifs_group.html
1618
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/OutputSequenceAttributes.java
1267
share/doc/EMBOSS/programs/html/nucleic_mutation_group.html
1619
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/SequenceFilter.java
1268
share/doc/EMBOSS/programs/html/nucleic_primers_group.html
1620
share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser/TextAreaSink.java
1269
share/doc/EMBOSS/programs/html/nucleic_profiles_group.html
1621
share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup/Database.java
1270
share/doc/EMBOSS/programs/html/nucleic_repeats_group.html
1622
share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup/ProgList.java
1271
share/doc/EMBOSS/programs/html/nucleic_restriction_group.html
1623
share/EMBOSS/jemboss/org/emboss/jemboss/gui/AdvancedOptions.java
1272
share/doc/EMBOSS/programs/html/nucleic_transcription_group.html
1624
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ResultsMenuBar.java
1273
share/doc/EMBOSS/programs/html/nucleic_translation_group.html
1625
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ShowResultSet.java
1274
share/doc/EMBOSS/programs/html/octanol.html
1626
share/EMBOSS/jemboss/org/emboss/jemboss/gui/BuildProgramMenu.java
1275
share/doc/EMBOSS/programs/html/octanol0.gif
1627
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SequenceData.java
1276
share/doc/EMBOSS/programs/html/oddcomp.html
1628
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ShowSavedResults.java
1277
share/doc/EMBOSS/programs/html/palindrome.html
1629
share/EMBOSS/jemboss/org/emboss/jemboss/gui/LaunchJalView.java
1278
share/doc/EMBOSS/programs/html/pasteseq.html
1630
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SequenceList.java
1279
share/doc/EMBOSS/programs/html/patmatdb.html
1631
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SwingWorker.java
1280
share/doc/EMBOSS/programs/html/patmatmotifs.html
1632
share/EMBOSS/jemboss/org/emboss/jemboss/gui/MemoryComboBox.java
1281
share/doc/EMBOSS/programs/html/penny.html
1633
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SetUpMenuBar.java
1282
share/doc/EMBOSS/programs/html/pepcoil.html
1634
share/EMBOSS/jemboss/org/emboss/jemboss/gui/Browser.java
1283
share/doc/EMBOSS/programs/html/pepinfo.html
1635
share/EMBOSS/jemboss/org/emboss/jemboss/gui/SplashThread.java
1284
share/doc/EMBOSS/programs/html/pepinfo1.gif
1636
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ScrollPanel.java
1285
share/doc/EMBOSS/programs/html/pepinfo2.gif
1637
share/EMBOSS/jemboss/org/emboss/jemboss/gui/ImageIconJPanel.java
1286
share/doc/EMBOSS/programs/html/pepnet.html
1638
share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd/ApplicationFields.java
1287
share/doc/EMBOSS/programs/html/pepnet0.gif
1639
share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd/ApplicationParam.java
1288
share/doc/EMBOSS/programs/html/pepstats.html
1640
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdFunResolve.java
1289
share/doc/EMBOSS/programs/html/pepwheel.html
1641
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdVariableResolve.java
1290
share/doc/EMBOSS/programs/html/pepwheel0.gif
1642
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AcdVarResolve.java
1291
share/doc/EMBOSS/programs/html/pepwindow.html
1643
share/EMBOSS/jemboss/org/emboss/jemboss/parser/Ajax.java
1292
share/doc/EMBOSS/programs/html/pepwindow0.gif
1644
share/EMBOSS/jemboss/org/emboss/jemboss/parser/AjaxUtil.java
1293
share/doc/EMBOSS/programs/html/pepwindowall.html
1645
share/EMBOSS/jemboss/org/emboss/jemboss/parser/Dependent.java
1294
share/doc/EMBOSS/programs/html/pepwindowall0.gif
1646
share/EMBOSS/jemboss/org/emboss/jemboss/parser/ParseAcd.java
1295
share/doc/EMBOSS/programs/html/phylogeny_group.html
1647
share/EMBOSS/jemboss/org/emboss/jemboss/programs/BatchUpdateTimer.java
1296
share/doc/EMBOSS/programs/html/plotcon.html
1648
share/EMBOSS/jemboss/org/emboss/jemboss/programs/JembossProcess.java
1297
share/doc/EMBOSS/programs/html/plotorf.html
1649
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ListFile.java
1298
share/doc/EMBOSS/programs/html/plotorf0.gif
1650
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ResultList.java
1299
share/doc/EMBOSS/programs/html/polydot.html
1651
share/EMBOSS/jemboss/org/emboss/jemboss/programs/ResultsUpdateTimer.java
1300
share/doc/EMBOSS/programs/html/polydot0.gif
1652
share/EMBOSS/jemboss/org/emboss/jemboss/programs/RunEmbossApplication.java
1301
share/doc/EMBOSS/programs/html/preg.html
1653
share/EMBOSS/jemboss/org/emboss/jemboss/programs/RunEmbossApplication2.java
1302
share/doc/EMBOSS/programs/html/prettyplot.html
1654
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossServer.java
1303
share/doc/EMBOSS/programs/html/prettyplot3.gif
1655
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossFileServer.java
1304
share/doc/EMBOSS/programs/html/prettyplot4.gif
1656
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossThread.java
1305
share/doc/EMBOSS/programs/html/prettyseq.html
1657
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossAuthServer.java
1306
share/doc/EMBOSS/programs/html/primersearch.html
1658
share/EMBOSS/jemboss/org/emboss/jemboss/server/JembossFileAuthServer.java
1307
share/doc/EMBOSS/programs/html/printsextract.html
1659
share/EMBOSS/jemboss/org/emboss/jemboss/server/TestPublicServer.java
1308
share/doc/EMBOSS/programs/html/profit.html
1660
share/EMBOSS/jemboss/org/emboss/jemboss/server/TestPrivateServer.java
1309
share/doc/EMBOSS/programs/html/prophecy.html
1661
share/EMBOSS/jemboss/org/emboss/jemboss/server/AppendToLogFileThread.java
1310
share/doc/EMBOSS/programs/html/prophet.html
1662
share/EMBOSS/jemboss/org/emboss/jemboss/soap/AuthPopup.java
1311
share/doc/EMBOSS/programs/html/prosextract.html
1663
share/EMBOSS/jemboss/org/emboss/jemboss/soap/JembossSoapException.java
1312
share/doc/EMBOSS/programs/html/protdist.html
1664
share/EMBOSS/jemboss/org/emboss/jemboss/soap/CallAjax.java
1313
share/doc/EMBOSS/programs/html/protein_2d_structure_group.html
1665
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PendingResults.java
1314
share/doc/EMBOSS/programs/html/protein_3d_structure_group.html
1666
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetWossname.java
1315
share/doc/EMBOSS/programs/html/protein_composition_group.html
1667
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PrivateRequest.java
1316
share/doc/EMBOSS/programs/html/protein_motifs_group.html
1668
share/EMBOSS/jemboss/org/emboss/jemboss/soap/JembossRun.java
1317
share/doc/EMBOSS/programs/html/protein_mutation_group.html
1669
share/EMBOSS/jemboss/org/emboss/jemboss/soap/ServerSetup.java
1318
share/doc/EMBOSS/programs/html/protein_profiles_group.html
1670
share/EMBOSS/jemboss/org/emboss/jemboss/soap/FileRoots.java
1319
share/doc/EMBOSS/programs/html/protein_structure_group.html
1671
share/EMBOSS/jemboss/org/emboss/jemboss/soap/FileList.java
1320
share/doc/EMBOSS/programs/html/pscan.html
1672
share/EMBOSS/jemboss/org/emboss/jemboss/soap/PublicRequest.java
1321
share/doc/EMBOSS/programs/html/rebaseextract.html
1673
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetACD.java
1322
share/doc/EMBOSS/programs/html/recode.html
1674
share/EMBOSS/jemboss/org/emboss/jemboss/soap/GetHelp.java
1323
share/doc/EMBOSS/programs/html/recoder.html
1675
share/EMBOSS/jemboss/org/emboss/jemboss/soap/ShowDB.java
1324
share/doc/EMBOSS/programs/html/redata.html
1676
share/EMBOSS/jemboss/org/emboss/jemboss/soap/MakeFileSafe.java
1325
share/doc/EMBOSS/programs/html/remap.html
1677
share/EMBOSS/jemboss/org/emboss/jemboss/Jemboss.java
1326
share/doc/EMBOSS/programs/html/restml.html
1678
share/EMBOSS/jemboss/org/emboss/jemboss/JembossLogo.java
1327
share/doc/EMBOSS/programs/html/restover.html
1679
share/EMBOSS/jemboss/org/emboss/jemboss/JembossParams.java
1328
share/doc/EMBOSS/programs/html/restrict.html
1680
share/EMBOSS/jemboss/org/emboss/jemboss/JembossJarUtil.java
1329
share/doc/EMBOSS/programs/html/revseq.html
1681
share/EMBOSS/jemboss/resources/jemboss.properties
1330
share/doc/EMBOSS/programs/html/scopalign.html
1682
share/EMBOSS/jemboss/resources/readme.html
1331
share/doc/EMBOSS/programs/html/scope.html
1683
share/EMBOSS/jemboss/resources/readmeAlign.html
1332
share/doc/EMBOSS/programs/html/seealso.html
1684
share/EMBOSS/jemboss/resources/readmeDNADraw.html
1333
share/doc/EMBOSS/programs/html/seqboot.html
1685
share/EMBOSS/jemboss/resources/results.html
1334
share/doc/EMBOSS/programs/html/seqmatchall.html
1686
share/EMBOSS/jemboss/resources/version
1335
share/doc/EMBOSS/programs/html/seqret.html
1687
share/EMBOSS/jemboss/resources/filemgr.html
1336
share/doc/EMBOSS/programs/html/seqretall.html
1688
share/EMBOSS/jemboss/resources/seqList.html
1337
share/doc/EMBOSS/programs/html/seqretallfeat.html
1689
share/EMBOSS/jemboss/utils/install-jemboss-server.sh
1338
share/doc/EMBOSS/programs/html/seqretfeat.html
1690
share/EMBOSS/jemboss/utils/keys.sh
1339
share/doc/EMBOSS/programs/html/seqretset.html
1691
share/EMBOSS/jemboss/utils/makeJar.csh
1340
share/doc/EMBOSS/programs/html/seqretsplit.html
1692
share/EMBOSS/jemboss/utils/makeJNLP.sh
1341
share/doc/EMBOSS/programs/html/showalign.html
1693
share/EMBOSS/jemboss/utils/makeFileManagerJNLP.sh
1342
share/doc/EMBOSS/programs/html/showdb.html
1694
share/EMBOSS/jemboss/utils/template.html
1343
share/doc/EMBOSS/programs/html/showfeat.html
1695
share/EMBOSS/jemboss/utils/README
1344
share/doc/EMBOSS/programs/html/showorf.html
1696
share/EMBOSS/jemboss/LICENSE
1345
share/doc/EMBOSS/programs/html/showseq.html
1697
share/EMBOSS/jemboss/readme.html
1346
share/doc/EMBOSS/programs/html/shuffleseq.html
1698
share/EMBOSS/jemboss/runJemboss.sh
1347
share/doc/EMBOSS/programs/html/sigcleave.html
1699
share/EMBOSS/jemboss/README
1348
share/doc/EMBOSS/programs/html/siggen.html
1700
%%PORTDOCS%%@dirrm %%DOCSDIR%%/manuals
1349
share/doc/EMBOSS/programs/html/sigscan.html
1701
%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs/html
1350
share/doc/EMBOSS/programs/html/silent.html
1702
%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs/text
1351
share/doc/EMBOSS/programs/html/splitter.html
1703
%%PORTDOCS%%@dirrm %%DOCSDIR%%/programs
1352
share/doc/EMBOSS/programs/html/stamps.html
1704
%%PORTDOCS%%@dirrm %%DOCSDIR%%/tutorials
1353
share/doc/EMBOSS/programs/html/stretcher.html
1705
%%PORTDOCS%%@dirrm %%DOCSDIR%%
1354
share/doc/EMBOSS/programs/html/stssearch.html
1706
@dirrm share/EMBOSS/acd
1355
share/doc/EMBOSS/programs/html/supermatcher.html
1707
@dirrm share/EMBOSS/data/AAINDEX
1356
share/doc/EMBOSS/programs/html/swissparse.html
1708
@dirrm share/EMBOSS/data/CODONS
1357
share/doc/EMBOSS/programs/html/syco.html
1709
@dirrm share/EMBOSS/data/REBASE
1358
share/doc/EMBOSS/programs/html/syco0.gif
1710
@dirrm share/EMBOSS/data/PRINTS
1359
share/doc/EMBOSS/programs/html/syco1.gif
1711
@dirrm share/EMBOSS/data/PROSITE
1360
share/doc/EMBOSS/programs/html/test_group.html
1712
@dirrm share/EMBOSS/data
1361
share/doc/EMBOSS/programs/html/textsearch.html
1713
@dirrm share/EMBOSS/test/data
1362
share/doc/EMBOSS/programs/html/tfextract.html
1714
@dirrm share/EMBOSS/test/embl
1363
share/doc/EMBOSS/programs/html/tfm.html
1364
share/doc/EMBOSS/programs/html/tfscan.html
1365
share/doc/EMBOSS/programs/html/tmap.html
1366
share/doc/EMBOSS/programs/html/tmap0.gif
1367
share/doc/EMBOSS/programs/html/topo.gif
1368
share/doc/EMBOSS/programs/html/topo.html
1369
share/doc/EMBOSS/programs/html/transeq.html
1370
share/doc/EMBOSS/programs/html/trimest.html
1371
share/doc/EMBOSS/programs/html/trimseq.html
1372
share/doc/EMBOSS/programs/html/utils_database_creation_group.html
1373
share/doc/EMBOSS/programs/html/utils_database_indexing_group.html
1374
share/doc/EMBOSS/programs/html/utils_misc_group.html
1375
share/doc/EMBOSS/programs/html/vectorstrip.html
1376
share/doc/EMBOSS/programs/html/water.html
1377
share/doc/EMBOSS/programs/html/wobble.html
1378
share/doc/EMBOSS/programs/html/wobble0.gif
1379
share/doc/EMBOSS/programs/html/wordcount.html
1380
share/doc/EMBOSS/programs/html/wordmatch.html
1381
share/doc/EMBOSS/programs/html/wossname.html
1382
share/doc/EMBOSS/programs/html/pdbtosp.html
1383
share/doc/EMBOSS/programs/html/psiblasts.html
1384
share/doc/EMBOSS/programs/html/scopparse.html
1385
share/doc/EMBOSS/programs/html/seqnr.html
1386
share/doc/EMBOSS/programs/html/seqsort.html
1387
share/doc/EMBOSS/programs/html/tranalign.html
1388
share/doc/EMBOSS/programs/html/union.html
1389
share/doc/EMBOSS/programs/html/whichdb.html
1390
share/doc/EMBOSS/programs/html/yank.html
1391
share/doc/EMBOSS/programs/html/alignwrap.html
1392
share/doc/EMBOSS/programs/html/dichet.html
1393
share/doc/EMBOSS/programs/html/eprimer3.html
1394
share/doc/EMBOSS/programs/html/interface.html
1395
share/doc/EMBOSS/programs/html/jembossctl.html
1396
share/doc/EMBOSS/programs/text/SITE-DIRECTED.txt
1397
share/doc/EMBOSS/programs/text/abiview.txt
1398
share/doc/EMBOSS/programs/text/ajtest.txt
1399
share/doc/EMBOSS/programs/text/antigenic.txt
1400
share/doc/EMBOSS/programs/text/backtranseq.txt
1401
share/doc/EMBOSS/programs/text/banana.txt
1402
share/doc/EMBOSS/programs/text/biosed.txt
1403
share/doc/EMBOSS/programs/text/btwisted.txt
1404
share/doc/EMBOSS/programs/text/cai.txt
1405
share/doc/EMBOSS/programs/text/chaos.txt
1406
share/doc/EMBOSS/programs/text/charge.txt
1407
share/doc/EMBOSS/programs/text/checktrans.txt
1408
share/doc/EMBOSS/programs/text/chips.txt
1409
share/doc/EMBOSS/programs/text/cirdna.txt
1410
share/doc/EMBOSS/programs/text/clique.txt
1411
share/doc/EMBOSS/programs/text/codcmp.txt
1412
share/doc/EMBOSS/programs/text/coderet.txt
1413
share/doc/EMBOSS/programs/text/complex.txt
1414
share/doc/EMBOSS/programs/text/compseq.txt
1415
share/doc/EMBOSS/programs/text/cons.txt
1416
share/doc/EMBOSS/programs/text/consense.txt
1417
share/doc/EMBOSS/programs/text/contacts.txt
1418
share/doc/EMBOSS/programs/text/contml.txt
1419
share/doc/EMBOSS/programs/text/contrast.txt
1420
share/doc/EMBOSS/programs/text/cpgplot.txt
1421
share/doc/EMBOSS/programs/text/cpgreport.txt
1422
share/doc/EMBOSS/programs/text/cusp.txt
1423
share/doc/EMBOSS/programs/text/cutgextract.txt
1424
share/doc/EMBOSS/programs/text/cutseq.txt
1425
share/doc/EMBOSS/programs/text/dan.txt
1426
share/doc/EMBOSS/programs/text/dbiblast.txt
1427
share/doc/EMBOSS/programs/text/dbifasta.txt
1428
share/doc/EMBOSS/programs/text/dbiflat.txt
1429
share/doc/EMBOSS/programs/text/dbigcg.txt
1430
share/doc/EMBOSS/programs/text/degapseq.txt
1431
share/doc/EMBOSS/programs/text/descseq.txt
1432
share/doc/EMBOSS/programs/text/diffseq.txt
1433
share/doc/EMBOSS/programs/text/digest.txt
1434
share/doc/EMBOSS/programs/text/distmat.txt
1435
share/doc/EMBOSS/programs/text/dnacomp.txt
1436
share/doc/EMBOSS/programs/text/dnadist.txt
1437
share/doc/EMBOSS/programs/text/dnainvar.txt
1438
share/doc/EMBOSS/programs/text/dnaml.txt
1439
share/doc/EMBOSS/programs/text/dnamlk.txt
1440
share/doc/EMBOSS/programs/text/dnapars.txt
1441
share/doc/EMBOSS/programs/text/dnapenny.txt
1442
share/doc/EMBOSS/programs/text/dollop.txt
1443
share/doc/EMBOSS/programs/text/dolpenny.txt
1444
share/doc/EMBOSS/programs/text/domainer.txt
1445
share/doc/EMBOSS/programs/text/dotmatcher.txt
1446
share/doc/EMBOSS/programs/text/dotpath.txt
1447
share/doc/EMBOSS/programs/text/dottup.txt
1448
share/doc/EMBOSS/programs/text/dreg.txt
1449
share/doc/EMBOSS/programs/text/eclique.txt
1450
share/doc/EMBOSS/programs/text/econsense.txt
1451
share/doc/EMBOSS/programs/text/econtml.txt
1452
share/doc/EMBOSS/programs/text/econtrast.txt
1453
share/doc/EMBOSS/programs/text/ednacomp.txt
1454
share/doc/EMBOSS/programs/text/ednadist.txt
1455
share/doc/EMBOSS/programs/text/ednainvar.txt
1456
share/doc/EMBOSS/programs/text/ednaml.txt
1457
share/doc/EMBOSS/programs/text/ednamlk.txt
1458
share/doc/EMBOSS/programs/text/ednapars.txt
1459
share/doc/EMBOSS/programs/text/ednapenny.txt
1460
share/doc/EMBOSS/programs/text/edollop.txt
1461
share/doc/EMBOSS/programs/text/edolpenny.txt
1462
share/doc/EMBOSS/programs/text/efactor.txt
1463
share/doc/EMBOSS/programs/text/efitch.txt
1464
share/doc/EMBOSS/programs/text/egendist.txt
1465
share/doc/EMBOSS/programs/text/einverted.txt
1466
share/doc/EMBOSS/programs/text/ekitsch.txt
1467
share/doc/EMBOSS/programs/text/embossdata.txt
1468
share/doc/EMBOSS/programs/text/embossversion.txt
1469
share/doc/EMBOSS/programs/text/emix.txt
1470
share/doc/EMBOSS/programs/text/emma.txt
1471
share/doc/EMBOSS/programs/text/emowse.txt
1472
share/doc/EMBOSS/programs/text/eneighbor.txt
1473
share/doc/EMBOSS/programs/text/entret.txt
1474
share/doc/EMBOSS/programs/text/epenny.txt
1475
share/doc/EMBOSS/programs/text/eprotdist.txt
1476
share/doc/EMBOSS/programs/text/eprotpars.txt
1477
share/doc/EMBOSS/programs/text/equicktandem.txt
1478
share/doc/EMBOSS/programs/text/erestml.txt
1479
share/doc/EMBOSS/programs/text/eseqboot.txt
1480
share/doc/EMBOSS/programs/text/est2genome.txt
1481
share/doc/EMBOSS/programs/text/etandem.txt
1482
share/doc/EMBOSS/programs/text/extractfeat.txt
1483
share/doc/EMBOSS/programs/text/extractseq.txt
1484
share/doc/EMBOSS/programs/text/factor.txt
1485
share/doc/EMBOSS/programs/text/findkm.txt
1486
share/doc/EMBOSS/programs/text/fitch.txt
1487
share/doc/EMBOSS/programs/text/freak.txt
1488
share/doc/EMBOSS/programs/text/fuzznuc.txt
1489
share/doc/EMBOSS/programs/text/fuzzpro.txt
1490
share/doc/EMBOSS/programs/text/fuzztran.txt
1491
share/doc/EMBOSS/programs/text/garnier.txt
1492
share/doc/EMBOSS/programs/text/geecee.txt
1493
share/doc/EMBOSS/programs/text/gendist.txt
1494
share/doc/EMBOSS/programs/text/getorf.txt
1495
share/doc/EMBOSS/programs/text/helixturnhelix.txt
1496
share/doc/EMBOSS/programs/text/hmoment.txt
1497
share/doc/EMBOSS/programs/text/iep.txt
1498
share/doc/EMBOSS/programs/text/infoalign.txt
1499
share/doc/EMBOSS/programs/text/infoseq.txt
1500
share/doc/EMBOSS/programs/text/isochore.txt
1501
share/doc/EMBOSS/programs/text/kitsch.txt
1502
share/doc/EMBOSS/programs/text/lindna.txt
1503
share/doc/EMBOSS/programs/text/listor.txt
1504
share/doc/EMBOSS/programs/text/marscan.txt
1505
share/doc/EMBOSS/programs/text/maskfeat.txt
1506
share/doc/EMBOSS/programs/text/maskseq.txt
1507
share/doc/EMBOSS/programs/text/matcher.txt
1508
share/doc/EMBOSS/programs/text/megamerger.txt
1509
share/doc/EMBOSS/programs/text/merger.txt
1510
share/doc/EMBOSS/programs/text/mix.txt
1511
share/doc/EMBOSS/programs/text/msbar.txt
1512
share/doc/EMBOSS/programs/text/mse.txt
1513
share/doc/EMBOSS/programs/text/mwfilter.txt
1514
share/doc/EMBOSS/programs/text/needle.txt
1515
share/doc/EMBOSS/programs/text/neighbor.txt
1516
share/doc/EMBOSS/programs/text/newcpgreport.txt
1517
share/doc/EMBOSS/programs/text/newcpgseek.txt
1518
share/doc/EMBOSS/programs/text/newseq.txt
1519
share/doc/EMBOSS/programs/text/noreturn.txt
1520
share/doc/EMBOSS/programs/text/notseq.txt
1521
share/doc/EMBOSS/programs/text/nrscope.txt
1522
share/doc/EMBOSS/programs/text/nthseq.txt
1523
share/doc/EMBOSS/programs/text/octanol.txt
1524
share/doc/EMBOSS/programs/text/oddcomp.txt
1525
share/doc/EMBOSS/programs/text/palindrome.txt
1526
share/doc/EMBOSS/programs/text/pasteseq.txt
1527
share/doc/EMBOSS/programs/text/patmatdb.txt
1528
share/doc/EMBOSS/programs/text/patmatmotifs.txt
1529
share/doc/EMBOSS/programs/text/penny.txt
1530
share/doc/EMBOSS/programs/text/pepcoil.txt
1531
share/doc/EMBOSS/programs/text/pepinfo.txt
1532
share/doc/EMBOSS/programs/text/pepnet.txt
1533
share/doc/EMBOSS/programs/text/pepstats.txt
1534
share/doc/EMBOSS/programs/text/pepwheel.txt
1535
share/doc/EMBOSS/programs/text/pepwindow.txt
1536
share/doc/EMBOSS/programs/text/pepwindowall.txt
1537
share/doc/EMBOSS/programs/text/plotcon.txt
1538
share/doc/EMBOSS/programs/text/plotorf.txt
1539
share/doc/EMBOSS/programs/text/polydot.txt
1540
share/doc/EMBOSS/programs/text/preg.txt
1541
share/doc/EMBOSS/programs/text/prettyplot.txt
1542
share/doc/EMBOSS/programs/text/prettyseq.txt
1543
share/doc/EMBOSS/programs/text/primersearch.txt
1544
share/doc/EMBOSS/programs/text/printsextract.txt
1545
share/doc/EMBOSS/programs/text/profit.txt
1546
share/doc/EMBOSS/programs/text/prophecy.txt
1547
share/doc/EMBOSS/programs/text/prophet.txt
1548
share/doc/EMBOSS/programs/text/prosextract.txt
1549
share/doc/EMBOSS/programs/text/protdist.txt
1550
share/doc/EMBOSS/programs/text/pscan.txt
1551
share/doc/EMBOSS/programs/text/rebaseextract.txt
1552
share/doc/EMBOSS/programs/text/recode.txt
1553
share/doc/EMBOSS/programs/text/recoder.txt
1554
share/doc/EMBOSS/programs/text/redata.txt
1555
share/doc/EMBOSS/programs/text/remap.txt
1556
share/doc/EMBOSS/programs/text/restml.txt
1557
share/doc/EMBOSS/programs/text/restover.txt
1558
share/doc/EMBOSS/programs/text/restrict.txt
1559
share/doc/EMBOSS/programs/text/revseq.txt
1560
share/doc/EMBOSS/programs/text/scopalign.txt
1561
share/doc/EMBOSS/programs/text/scope.txt
1562
share/doc/EMBOSS/programs/text/seealso.txt
1563
share/doc/EMBOSS/programs/text/seqboot.txt
1564
share/doc/EMBOSS/programs/text/seqmatchall.txt
1565
share/doc/EMBOSS/programs/text/seqret.txt
1566
share/doc/EMBOSS/programs/text/seqretall.txt
1567
share/doc/EMBOSS/programs/text/seqretallfeat.txt
1568
share/doc/EMBOSS/programs/text/seqretfeat.txt
1569
share/doc/EMBOSS/programs/text/seqretset.txt
1570
share/doc/EMBOSS/programs/text/seqretsplit.txt
1571
share/doc/EMBOSS/programs/text/showalign.txt
1572
share/doc/EMBOSS/programs/text/showdb.txt
1573
share/doc/EMBOSS/programs/text/showfeat.txt
1574
share/doc/EMBOSS/programs/text/showorf.txt
1575
share/doc/EMBOSS/programs/text/showseq.txt
1576
share/doc/EMBOSS/programs/text/shuffleseq.txt
1577
share/doc/EMBOSS/programs/text/sigcleave.txt
1578
share/doc/EMBOSS/programs/text/siggen.txt
1579
share/doc/EMBOSS/programs/text/sigscan.txt
1580
share/doc/EMBOSS/programs/text/silent.txt
1581
share/doc/EMBOSS/programs/text/splitter.txt
1582
share/doc/EMBOSS/programs/text/stamps.txt
1583
share/doc/EMBOSS/programs/text/stretcher.txt
1584
share/doc/EMBOSS/programs/text/stssearch.txt
1585
share/doc/EMBOSS/programs/text/supermatcher.txt
1586
share/doc/EMBOSS/programs/text/swissparse.txt
1587
share/doc/EMBOSS/programs/text/syco.txt
1588
share/doc/EMBOSS/programs/text/textsearch.txt
1589
share/doc/EMBOSS/programs/text/tfextract.txt
1590
share/doc/EMBOSS/programs/text/tfm.txt
1591
share/doc/EMBOSS/programs/text/tfscan.txt
1592
share/doc/EMBOSS/programs/text/tmap.txt
1593
share/doc/EMBOSS/programs/text/topo.txt
1594
share/doc/EMBOSS/programs/text/transeq.txt
1595
share/doc/EMBOSS/programs/text/trimest.txt
1596
share/doc/EMBOSS/programs/text/trimseq.txt
1597
share/doc/EMBOSS/programs/text/vectorstrip.txt
1598
share/doc/EMBOSS/programs/text/water.txt
1599
share/doc/EMBOSS/programs/text/wobble.txt
1600
share/doc/EMBOSS/programs/text/wordcount.txt
1601
share/doc/EMBOSS/programs/text/wordmatch.txt
1602
share/doc/EMBOSS/programs/text/wossname.txt
1603
share/doc/EMBOSS/programs/text/jembossctl.txt
1604
share/doc/EMBOSS/programs/text/pdbtosp.txt
1605
share/doc/EMBOSS/programs/text/psiblasts.txt
1606
share/doc/EMBOSS/programs/text/scopparse.txt
1607
share/doc/EMBOSS/programs/text/seqnr.txt
1608
share/doc/EMBOSS/programs/text/seqsort.txt
1609
share/doc/EMBOSS/programs/text/tranalign.txt
1610
share/doc/EMBOSS/programs/text/union.txt
1611
share/doc/EMBOSS/programs/text/whichdb.txt
1612
share/doc/EMBOSS/programs/text/yank.txt
1613
share/doc/EMBOSS/programs/text/alignwrap.txt
1614
share/doc/EMBOSS/programs/text/dichet.txt
1615
share/doc/EMBOSS/programs/text/eprimer3.txt
1616
share/doc/EMBOSS/programs/text/interface.txt
1617
share/doc/EMBOSS/tutorials/biblio.bib
1618
share/doc/EMBOSS/tutorials/dottup.ps.gz
1619
share/doc/EMBOSS/tutorials/emboss-gcg.ppt
1620
share/doc/EMBOSS/tutorials/emboss-interfaces.ppt
1621
share/doc/EMBOSS/tutorials/emboss-talk.ppt
1622
share/doc/EMBOSS/tutorials/emboss_tutorial.ps.gz
1623
share/doc/EMBOSS/tutorials/emboss_tutorial.tex
1624
share/doc/EMBOSS/tutorials/pepinfo1.ps.gz
1625
share/doc/EMBOSS/tutorials/pepinfo2.ps.gz
1626
share/doc/EMBOSS/tutorials/plotorf.ps.gz
1627
share/doc/EMBOSS/tutorials/tmap.ps.gz
1628
@dirrm share/doc/EMBOSS/tutorials
1629
@dirrm share/doc/EMBOSS/programs/text
1630
@dirrm share/doc/EMBOSS/programs/html
1631
@dirrm share/doc/EMBOSS/programs
1632
@dirrm share/doc/EMBOSS/manuals
1633
@dirrm share/doc/EMBOSS
1634
@dirrm share/EMBOSS/test/wormpep
1635
@dirrm share/EMBOSS/test/swnew
1636
@dirrm share/EMBOSS/test/swiss
1637
@dirrm share/EMBOSS/test/pir
1638
@dirrm share/EMBOSS/test/genbank
1715
@dirrm share/EMBOSS/test/genbank
1639
@dirrm share/EMBOSS/test/gb
1716
@dirrm share/EMBOSS/test/gb
1640
@dirrm share/EMBOSS/test/embl
1717
@dirrm share/EMBOSS/test/pir
1641
@dirrm share/EMBOSS/test/data
1718
@dirrm share/EMBOSS/test/swiss
1719
@dirrm share/EMBOSS/test/swnew
1720
@dirrm share/EMBOSS/test/wormpep
1642
@dirrm share/EMBOSS/test
1721
@dirrm share/EMBOSS/test
1643
@dirrm share/EMBOSS/jemboss/utils
1644
@dirrm share/EMBOSS/jemboss/resources
1645
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/soap
1646
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/server
1647
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/programs
1648
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd
1649
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/parser
1650
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup
1651
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser
1652
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/form
1653
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree
1654
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui
1655
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss
1656
@dirrm share/EMBOSS/jemboss/org/emboss
1657
@dirrm share/EMBOSS/jemboss/org
1658
@dirrm share/EMBOSS/jemboss/lib
1659
@dirrm share/EMBOSS/jemboss/images
1660
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/soap
1661
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/programs
1662
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd
1663
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/parser
1664
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup
1665
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser
1666
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form
1667
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree
1722
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/filetree
1723
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/form
1724
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/sequenceChooser
1725
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui/startup
1668
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui
1726
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/gui
1727
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/parser/acd
1728
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/parser
1729
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/programs
1730
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss/soap
1669
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss
1731
@dirrm share/EMBOSS/jemboss/api/org/emboss/jemboss
1670
@dirrm share/EMBOSS/jemboss/api/org/emboss
1732
@dirrm share/EMBOSS/jemboss/api/org/emboss
1671
@dirrm share/EMBOSS/jemboss/api/org
1733
@dirrm share/EMBOSS/jemboss/api/org
1672
@dirrm share/EMBOSS/jemboss/api
1734
@dirrm share/EMBOSS/jemboss/api
1735
@dirrm share/EMBOSS/jemboss/images
1736
@dirrm share/EMBOSS/jemboss/lib/axis
1737
@dirrm share/EMBOSS/jemboss/lib
1738
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/editor
1739
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/draw
1740
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/filetree
1741
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/form
1742
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/sequenceChooser
1743
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui/startup
1744
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/gui
1745
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/parser/acd
1746
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/parser
1747
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/programs
1748
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/server
1749
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss/soap
1750
@dirrm share/EMBOSS/jemboss/org/emboss/jemboss
1751
@dirrm share/EMBOSS/jemboss/org/emboss
1752
@dirrm share/EMBOSS/jemboss/org
1753
@dirrm share/EMBOSS/jemboss/resources
1754
@dirrm share/EMBOSS/jemboss/utils
1673
@dirrm share/EMBOSS/jemboss
1755
@dirrm share/EMBOSS/jemboss
1674
@dirrm share/EMBOSS/data/REBASE
1675
@dirrm share/EMBOSS/data/PROSITE
1676
@dirrm share/EMBOSS/data/PRINTS
1677
@dirrm share/EMBOSS/data/CODONS
1678
@dirrm share/EMBOSS/data
1679
@dirrm share/EMBOSS/acd
1680
@dirrm share/EMBOSS
1756
@dirrm share/EMBOSS
(-)emboss/scripts/configure.emboss (-73 lines)
Lines 1-73 Link Here
1
#!/bin/sh
2
3
if [ -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc ]; then
4
  exit
5
fi
6
7
if [ "${BATCH}" ]; then
8
  set \"EMNU\" \"HMMER\" \"MEME\" \"MSE\" \"PHYLIP\" \"TOPO\"
9
else
10
  /usr/bin/dialog --title "EMBOSS: EMBASSY applications" --clear \
11
  --checklist "\n\
12
These third party applications have been adapted to
13
function as part of EMBOSS.\n
14
Please select EMBASSY applications to install:" -1 -1 6 \
15
EMNU	"v${EMNU_VERSION} - Text-based menu" ON \
16
HMMER	"v${HMMER_VERSION} - HMM alignment" ON \
17
MEME	"v${MEME_VERSION} - Motif detection" ON \
18
MSE	"v${MSE_VERSION} - Phylogeny inference" ON \
19
PHYLIP	"v${PHYLIP_VERSION} - Sequence editor" ON \
20
TOPO	"v${TOPO_VERSION} - Transmembrane display" ON \
21
2> /tmp/checklist.tmp.$$
22
23
  retval=$?
24
25
  if [ -s /tmp/checklist.tmp.$$ ]; then
26
    set `cat /tmp/checklist.tmp.$$`
27
  fi
28
  ${RM} -f /tmp/checklist.tmp.$$
29
30
  case $retval in
31
    0)
32
      if [ -z "$*" ]; then
33
        echo "Nothing selected"
34
      fi
35
    ;;
36
    1)
37
      echo "Cancel pressed."
38
      exit 1
39
    ;;
40
  esac
41
fi
42
43
${MKDIR} ${WRKDIRPREFIX}${CURDIR}
44
exec > ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
45
46
while [ "$1" ]; do
47
  case $1 in
48
    \"EMNU\")
49
      echo "WITH_EMNU=	yes"
50
    ;;
51
    \"HMMER\")
52
      echo "WITH_HMMER=	yes"
53
    ;;
54
    \"MEME\")
55
      echo "WITH_MEME=	yes"
56
    ;;
57
    \"MSE\")
58
      echo "WITH_MSE=	yes"
59
    ;;
60
    \"PHYLIP\")
61
      echo "WITH_PHYLIP=	yes"
62
    ;;
63
    \"TOPO\")
64
      echo "WITH_TOPO=	yes"
65
    ;;
66
    *)
67
      echo "Invalid option(s): $*" > /dev/stderr
68
      ${RM} -f ${WRKDIRPREFIX}${CURDIR}/Makefile.inc
69
      exit 1
70
    ;;
71
  esac
72
  shift
73
done

Return to bug 74333