-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHPO.config
More file actions
executable file
·58 lines (45 loc) · 1.5 KB
/
HPO.config
File metadata and controls
executable file
·58 lines (45 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh
#
# Program: HP.config
#
# Purpose:
#
# Configuration file for Human Phenotype Ontology Load
#
cd `dirname $0`
RUNTIME_DIR="${DATALOADSOUTPUT}/mgi/vocload/runTimeHPO"
ARCHIVE_DIR="${DATALOADSOUTPUT}/mgi/vocload/archiveHPO"
export RUNTIME_DIR ARCHIVE_DIR
DATA_DIR="/data/downloads/purl.obolibrary.org/obo"
OBO_FILE="${DATA_DIR}/hp.obo"
OBO_FILE_VERSION="1.2"
export DATA_DIR OBO_FILE OBO_FILE_VERSION
# This variable will let the loadTerm module know that it should expect to
# find a synonym type column in the Termfile.
#
USE_SYNONYM_TYPE=1
export USE_SYNONYM_TYPE
RCD_FILE="HPO.rcd"
export RCD_FILE
case `uname -n` in
bhmgiapp01) MAINTAINER="mgiadmin cynthia.smith@jax.org susan.bello@jax.org";;
*) MAINTAINER="$USER";;
esac
export MAINTAINER
# vocabulary attributes:
VOCAB_NAME="Human Phenotype Ontology" # name of vocabulary (VOC_Vocab.name)
VOCAB_COMMENT_KEY=1001 # name of note types for comments
ACC_PREFIX="HP" # acc ID prefix
JNUM="J:229231" # reference for this vocabulary
IS_SIMPLE=0 # structured vocabulary; should be a .rcd file
IS_PRIVATE=0 # acc IDs are public
LOGICALDB_KEY=180 # ACC_LogicalDB._LogicalDB_key
ANNOT_TYPE_KEY=0 # VOC_AnnotType._AnnotType_key; don;t report annotations
# to newly obsoleted terms
DAG_ROOT_ID="HP:0000001"
export VOCAB_NAME VOCAB_COMMENT_KEY ACC_PREFIX JNUM
export IS_SIMPLE IS_PRIVATE LOGICALDB_KEY
export ANNOT_TYPE_KEY DAG_ROOT_ID
TERM_FILE="${RUNTIME_DIR}/Termfile"
DEFS_FILE="${RUNTIME_DIR}/HPO.defs"
export TERM_FILE DEFS_FILE