-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (72 loc) · 4.77 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/ico" href="img/alu.ico"/>
<meta name="title" content="CaseOLAP">
<meta itemprop="name" content="CaseOLAP">
<meta property="og:title" content="CaseOLAP">
<meta name="description"
content="CaseOLAP">
<meta itemprop="description"
content="CaseOLAP">
<meta id="meta-tag-description" property="og:description"
content="CaseOLAP">
<title>CaseOLAP</title>
<meta itemprop="image"
content="https://avatars3.githubusercontent.com/u/41661812?s=400&u=094ffc3c6cfe28f1908dfe1c0eca1602abe7219b&v=4">
<meta property="og:image"
content="https://avatars3.githubusercontent.com/u/41661812?s=400&u=094ffc3c6cfe28f1908dfe1c0eca1602abe7219b&v=4">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"
integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css"
integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
</head>
<body>
<!--About Us -->
<div id="aboutUs">
<div class="container">
<div class="row">
<div class="page-header"><h1>CaseOLAP Workflow</h1></div>
<div class="col-md-7">
<p>
The Context-aware Semantic Online Analytical Processing pipeline (CaseOLAP), was developed in 2016 by Fangbo Tao et.al. CaseOLAP successfully quantifies user-defined phrase-category relationships through analysis of textual data.
</p>
<p>
CaseOLAP workflow presents data preprocessing (i.e., downloading and parsing text documents), indexing and searching with Elasticsearch, creating a functional document structure called Text-Cube and quantifying phrase-category relationships using the core CaseOLAP algorithm.
</p>
<p>
Data preprocessing generates key-value pairs for all documents involved. As an example, a key may refer to the document PMID, while a value may refer to different document metadata. Preprocessed data is rearranged by indexing and searching for an entity count, which further facilitates the CaseOLAP score calculation. Obtained raw CaseOLAP results can be taken to integrative analysis including dimensionality reduction, clustering, temporal and geographical analysis, as well as the creation of a graphical database which enables semantic mapping of the documents .
</p>
</div>
<div class="col-md-4 col-md-offset-1">
<h2>Pipelines</h2>
<ul>
<li> <a href="pipelines/Download.html" target="_blank"> Downloading and Data Extraction </a> </li>
<li> <a href="pipelines/Parsing.html" target="_blank"> Data Parsing Pipeline </a> </li>
<li> <a href="pipelines/Indexing.html" target="_blank"> Indexing and Search with Elasticsearch</a></li>
<li> <a href="pipelines/TextCube.html" target="_blank"> Text-Cube Creation </a></li>
<li> <a href="pipelines/EntityCount.html" target="_blank"> Entity Count </a></li>
<li> <a href="pipelines/CaseOLAP.html" target="_blank"> CaseOLAP Calculation </a> </li>
</ul>
<h2>Data Samples</h2>
<ul>
<li> <a href="data/extracted-data-sample.xml" target="_blank"> Extracted Data Sample </a> </li>
<li> <a href="data/parsed-data-sample.json" target="_blank"> Parsed Data Sample </a> </li>
<li> <a href="data/age-group-sample.csv" target="_blank"> Age group CaseOLAP score Sample </a> </li>
<li> <a href="data/PMID-to-entity-count-mapping-sample.txt" target="_blank"> PMID to entity count mapping Sample </a> </li>
</ul>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"
integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/knockout/3.4.0/knockout-min.js"></script>
</body>
</html>