source: tags/initial/NIELS_F77/pal_params.inc

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.0 KB
Line 
1C
2C Max number of open logical units ( = file handles = io channels)
3C
4c      INTEGER     lundim
5c      PARAMETER  (lundim = 100)
6C
7C Number of indices of IO arrays,
8C
9      INTEGER    ndx_max
10      PARAMETER (ndx_max = 17)
11C
12C Fixed parameters, that set the limits within which MALLOC allocates.
13C These values could be very large, they dont themselves cause memory
14C consumption. This is the only place you need to edit parameters
15C before you recompile.
16C
17C ** overflow checking only partially ok, needs work **
18C
19      INTEGER     tuplenmax       
20      PARAMETER  (tuplenmax = 10)   ! oligo length maximum
21
22      INTEGER     tupdimmax                 
23      PARAMETER  (tupdimmax = 4 ** tuplenmax) ! max number of different oligos
24C
25C Parameters for GenBank alignment file
26C
27      INTEGER    old_seqsdim         
28      PARAMETER (old_seqsdim = 5000) ! max number of old seqs
29
30      INTEGER    old_basdim         
31      PARAMETER (old_basdim = 10000) ! max AVERAGE # bases / seq
32
33      INTEGER    old_bytdim
34      PARAMETER (old_bytdim = old_seqsdim * old_basdim)
35
36      INTEGER    old_tbldim
37      PARAMETER (old_tbldim = old_basdim * old_seqsdim + tupdimmax)
38
39      INTEGER    old_sidswid         
40      PARAMETER (old_sidswid = 10)   ! max short-ID width
41
42      INTEGER    old_lidswid         
43      PARAMETER (old_lidswid = 80)   ! max length of full names
44C
45C Parameters for unaligned GenBank file
46C
47      INTEGER    new_seqsdim         
48      PARAMETER (new_seqsdim = 5000) ! max number of new seqs
49
50      INTEGER    new_basdim         
51      PARAMETER (new_basdim = 10000) ! currently new sequence length
52
53      INTEGER    new_bytdim
54      PARAMETER (new_bytdim = new_seqsdim * new_basdim)
55
56      INTEGER    new_sidswid         
57      PARAMETER (new_sidswid = 10)   ! max short-ID width
58
59      INTEGER    new_lidswid         
60      PARAMETER (new_lidswid = 80)   ! max length of full names
61
62      INTEGER    new_textwid         
63      PARAMETER (new_textwid = 80)   ! max length of input file lines
64
Note: See TracBrowser for help on using the repository browser.