-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathslushy.bel
More file actions
106 lines (71 loc) · 3.38 KB
/
slushy.bel
File metadata and controls
106 lines (71 loc) · 3.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
SET DOCUMENT Name = "Worst. BEL Document. Ever."
SET DOCUMENT Description = "This document outlines all of the evil and awful work that is possible during BEL curation"
SET DOCUMENT Version = "0.0"
SET DOCUMENT Authors = "Charles Tapley Hoyt"
SET DOCUMENT Licenses = "WTF License"
# SET DOCUMENT ContactInfo = "charles.hoyt@scai.fraunhofer.de" # Missing Contact Info is required
# SET DOCUMENT InvalidMetadata = "very invalid, indeed"
DEFINE NAMESPACE HGNC AS URL "https://owncloud.scai.fraunhofer.de/index.php/s/JsfpQvkdx3Y5EMx/download?path=hgnc-human-genes.belns"
DEFINE NAMESPACE GO AS URL "https://owncloud.scai.fraunhofer.de/index.php/s/JsfpQvkdx3Y5EMx/download?path=go-biological-process.belns"
DEFINE NAMESPACE dbSNP AS PATTERN "rs[0-9]+$"
DEFINE ANNOTATION CellLine AS URL "https://owncloud.scai.fraunhofer.de/index.php/s/JsfpQvkdx3Y5EMx/download?path=cell-line.belanno"
DEFINE ANNOTATION TextLocation AS LIST {"Abstract","Results","Legend","Review"}
DEFINE ANNOTATION Disease AS URL "https://owncloud.scai.fraunhofer.de/index.php/s/JsfpQvkdx3Y5EMx/download?path=mesh-diseases.belanno"
#: Name doesn't match annotation file Keyword (LexicographyWarning, not implemented yet)
DEFINE ANNOTATION Specieses AS URL "https://owncloud.scai.fraunhofer.de/index.php/s/JsfpQvkdx3Y5EMx/download?path=species-taxonomy-id.belanno"
DEFINE ANNOTATION PowerLevel AS PATTERN "[0-9]+$"
# MissingAnnotationKeyWarning
UNSET STATEMENT_GROUP
# MissingAnnotationKeyWarning
UNSET Citation
SET STATEMENT_GROUP = "Group 1"
# InvalidCitationException
SET Citation = {"PubMed"}
# InvalidCitationType
SET Citation = {"Pubmed", "Incomplete", "1234"}
# InvalidPubMedIdentifierWarning
SET Citation = {"PubMed", "Fake Name", "Fake Reference"}
# MissingCitationException
p(HGNC:AKT1) -- p(HGNC:AKT2)
SET Citation = {"PubMed","Trends in molecular medicine","12928037"}
# MissingAnnotationKeyWarning
UNSET Evidence
# MissingAnnotationKeyWarning
UNSET PowerLevel
# MissingSupportWarning
p(HGNC:AKT1) -- p(HGNC:AKT2)
SET Evidence = "This is definitely real evidence"
# Naked name (NakedNameWarning)
biologicalProcess("response to oxidative stress") increases biologicalProcess(GO:necrosis)
# UndefinedNamespaceWarning
p(UNDEFINED:"YFG") -- p(HGNC:AKT1)
# Missing name (MissingNamespaceNameWarning)
biologicalProcess(GO:"maybe response to oxidative stress") increases biologicalProcess(GO:necrosis)
# UndefinedAnnotationWarning
SET UNDEFINED_ANNOTATION = "Nope."
# MissingAnnotationKeyWarning
UNSET TextLocation
# IllegalAnnotationValueWarning
SET TextLocation = "Nope"
# MissingAnnotationRegexWarning
SET PowerLevel = "Nine Thousand"
# MissingNamespaceRegexWarning
g(dbSNP:"rs123123-A") eq g(HGNC:TP53)
# MalformedTranslocationWarning
tloc(p(HGNC:AKT1)) -- p(HGNC:AKT2)
# PlaceholderAminoAcidWarning
p(HGNC:AKT1, sub(G, 1, X)) -- p(HGNC:AKT2)
# NestedRelationWarning
p(HGNC:AKT1) -> (p(HGNC:AKT2) -> biologicalProcess(GO:"response to oxidative stress"))
# InvalidFunctionSemantic
bp(HGNC:AKT1) -> p(HGNC:AKT2)
# Forgot quotes (ParseException)
# SET Disease = Atherosclerosis
# Mixed up arguments (ParseException)
p(HGNC:TP53,sub(Q,R,248)) directlyDecreases transcriptionalActivity(proteinAbundance(HGNC:TP53))
UNSET STATEMENT_GROUP
######## The following statements have no errors #############
SET STATEMENT_GROUP = "Group 2"
SET Citation = {"PubMed","That one article from last week","123455"}
SET Evidence = "Evidence 1"
p(HGNC:AKT1) -> p(HGNC:EGFR)