Skip to content

Commit 1f772bd

Browse files
committed
change ardac overview observational references
1 parent 7cee929 commit 1f772bd

1 file changed

Lines changed: 32 additions & 15 deletions

File tree

src/Data_Access/ardac.html

Lines changed: 32 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<!doctype html>
22
<html lang="en">
3+
34
<head>
45
<meta charset="utf-8">
56
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
@@ -12,6 +13,7 @@
1213
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
1314
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
1415
</head>
16+
1517
<body>
1618
<div id="navbar-include"></div>
1719
<div id="search-modal-include"></div>
@@ -20,24 +22,38 @@
2022
<div class="container marketing">
2123
<div class="container">
2224
<h3 class="section-title">ARDaC</h3>
23-
25+
2426
<div style="text-align: center; margin: 2rem 0;">
25-
<img src="../images/ardac/overview.png" alt="ARDaC Overview" class="img-fluid" style="max-width: 100%; height: auto;">
27+
<img src="../images/ardac/overview.png" alt="ARDaC Overview" class="img-fluid"
28+
style="max-width: 100%; height: auto;">
2629
</div>
27-
30+
2831
<div class="row featurette">
2932
<div class="col lead">
3033
<p>
31-
The Indiana University Data Coordinating Center (IU DCC) provides the Alcohol-associated hepatitis Research Data Commons (ARDaC). ARDaC is an essential research infrastructure that supports experimental design, study implementation, data management, and statistical analysis in alcohol-associated hepatitis (AH) research.
34+
The Indiana University Data Coordinating Center (IU DCC) provides the Alcohol-associated hepatitis
35+
Research Data Commons (ARDaC). ARDaC is an essential research infrastructure that supports experimental
36+
design, study implementation, data management, and statistical analysis in alcohol-associated hepatitis
37+
(AH) research.
3238
</p>
3339
<p>
34-
ARDaC contains data generated by the Alcoholic Hepatitis Network project, AlcHepNet (<a href="http://www.alchepnet.org/" target="_blank">http://www.alchepnet.org/</a>), which is sponsored by the National Institute on Alcohol Abuse and Alcoholism (NIAAA). AlcHepNet has recruited over 1,300 participants in randomized clinical trials and observational studies, as well as in translational projects that utilize biospecimens collected by two primary studies. Participants are followed for 180 days or longer, with more than 78,000 blood, urine, saliva, and liver biopsy bio-samples collected. ARDaC includes demographic and behavioral features, clinical conditions, laboratory tests, treatments and outcomes, as well as multiomics data from microbiome, immunologic, proteomic, metabolomic, lipidomic, and RNA/ChIP-sequencing analyses.
40+
ARDaC contains data generated by the Alcoholic Hepatitis Network project, AlcHepNet (<a
41+
href="http://www.alchepnet.org/" target="_blank">http://www.alchepnet.org/</a>), which is sponsored by
42+
the National Institute on Alcohol Abuse and Alcoholism (NIAAA). AlcHepNet conducts clinical studies,
43+
provides clinical data management and statistical analysis. It also functions as the central biorepository
44+
of the network. ARDaC is a web-based data commons, functions as an interactive user interface of the
45+
collected study data and biospecimens. ARDaC currently presents demographic and behavioral features,
46+
clinical conditions, laboratory tests, treatments and outcomes. It is being extended to include multiomics
47+
data from microbiome, immunologic, proteomic, metabolomic, lipidomic, and RNA/ChIP-sequencing analyses.
3548
</p>
3649
<p>
37-
ARDaC facilitates effective research use of the rich and complex AlcHepNet data. It serves as the central data hub and research nexus (<a href="https://portal.ardac.org/" target="_blank">https://portal.ardac.org/</a>).
50+
ARDaC facilitates effective research use of the rich and complex AlcHepNet data. It serves as the central
51+
data hub and research nexus (<a href="https://portal.ardac.org/"
52+
target="_blank">https://portal.ardac.org/</a>).
3853
</p>
3954
<p>
40-
<strong>For more information, visit <a href="https://ardac.org/" target="_blank">https://ardac.org/</a></strong>
55+
<strong>For more information, visit <a href="https://ardac.org/"
56+
target="_blank">https://ardac.org/</a></strong>
4157
</p>
4258
</div>
4359
</div>
@@ -51,31 +67,32 @@ <h3 class="section-title">ARDaC</h3>
5167
<script src="../bootstrap.min.js"></script>
5268
<script src="../simple-dropdown.js"></script>
5369
<script>
54-
$(function() {
55-
$("#navbar-include").load("../navbar.html", function() {
56-
$("#navbar-include a").each(function() {
70+
$(function () {
71+
$("#navbar-include").load("../navbar.html", function () {
72+
$("#navbar-include a").each(function () {
5773
var href = $(this).attr("href");
58-
if(href && !href.startsWith("http") && !href.startsWith("#")) {
59-
if(href.startsWith("Data_Access/")) {
74+
if (href && !href.startsWith("http") && !href.startsWith("#")) {
75+
if (href.startsWith("Data_Access/")) {
6076
$(this).attr("href", href.replace("Data_Access/", ""));
6177
} else {
6278
$(this).attr("href", "../" + href);
6379
}
6480
}
6581
});
66-
$("#navbar-include img").each(function() {
82+
$("#navbar-include img").each(function () {
6783
var src = $(this).attr("src");
68-
if(src && !src.startsWith("http") && !src.startsWith("data:") && !src.startsWith("/")) {
84+
if (src && !src.startsWith("http") && !src.startsWith("data:") && !src.startsWith("/")) {
6985
$(this).attr("src", "../" + src);
7086
}
7187
});
7288
console.log('Navbar loaded and links updated');
7389
});
7490
$("#search-modal-include").load("../search-modal.html");
75-
$("#footer-include").load("../footer.html", function() {
91+
$("#footer-include").load("../footer.html", function () {
7692
console.log('Footer loaded');
7793
});
7894
});
7995
</script>
8096
</body>
97+
8198
</html>

0 commit comments

Comments
 (0)