Due to the lapse in federal government funding, NASA is not updating this website. We sincerely regret this inconvenience.
NASA Logo
Ocean Color Science Software

ocssw V2022
globals.h
Go to the documentation of this file.
1 /* Copyright (C) 2004 Marc Rehmsmeier, Peter Steffen, Matthias Hoechsmann */
2 
3 /* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. */
4 
5 /* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. */
6 
7 /* You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
8 
9 #ifndef globals_h
10 #define globals_h
11 
12 
13 #define MAXTARGET 2000
14 #define MAXQUERY 30
15 #define MAXLINE 1000
16 #define MAXSEQUENCE 100000
17 
18 #define ILOOPUPPERLIMITDEFAULT 15
19 #define BLOOPUPPERLIMITDEFAULT 15
20 
21 #define MEAN 500
22 #define STDDEV 300
23 #define SAMPLESIZE 5000
24 
25 #define MIRNA_LENGTH_MEAN 22
26 #define MIRNA_LENGTH_STDDEV 0
27 
28 #define MAXTARGETNUMBER 100000
29 #define MAXQUERYNUMBER 100000
30 
31 #define MAXORTHOLOGNUMBER 10
32 
33 #define BINNUMBER 500
34 #define FITLOWERCUTOFFABSOLUTE 2.0
35 #define FITUPPERCUTOFFPERCENT 1.0
36 
37 #define SETNAME_3UTR_FLY "3utr_fly"
38 #define SETNAME_3UTR_WORM "3utr_worm"
39 #define SETNAME_3UTR_HUMAN "3utr_human"
40 
41 #define XI_SLOPE_3UTR_FLY (-0.03144)
42 #define XI_INTERCEPT_3UTR_FLY (0.7201)
43 #define THETA_SLOPE_3UTR_FLY (-0.003429)
44 #define THETA_INTERCEPT_3UTR_FLY (0.01634)
45 
46 #define XI_SLOPE_3UTR_WORM (-0.01074)
47 #define XI_INTERCEPT_3UTR_WORM (1.769)
48 #define THETA_SLOPE_3UTR_WORM (-0.001154)
49 #define THETA_INTERCEPT_3UTR_WORM (0.1419)
50 
51 #define XI_SLOPE_3UTR_HUMAN (-0.01237)
52 #define XI_INTERCEPT_3UTR_HUMAN (1.901)
53 #define THETA_SLOPE_3UTR_HUMAN (-0.001678)
54 #define THETA_INTERCEPT_3UTR_HUMAN (0.1349)
55 
56 
57 #endif