-
Notifications
You must be signed in to change notification settings - Fork 0
/
faqs.html
45 lines (41 loc) · 1.74 KB
/
faqs.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
<!DOCTYPE html>
<html>
<head>
<title>VDW</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script src="https://d3js.org/d3.v5.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/menu.js"></script>
<script type="text/javascript" src="js/functions.js"></script>
<style type="text/css">
body, html {
height: 100%;
}
</style>
</head>
<body>
<script>
// get the system platform using node.js
var os = require('os');
//require('nw.gui').Window.get().showDevTools();
// document.write('You are running on ', os.platform());
$(function(){
$("#Menu").load("menu.html");
});
</script>
<div id="Menu"></div>
<!-- Use any element to open the sidenav -->
<span onclick="openNav()" style="color: chartreuse;background-color: black;"><B> ☰ Menu </B> </span>
<div id="main">
<div class="container" id="container"><br>
<h4>FAQs:</h4><br>
<p>What to do if VDW doesn't open? Make sure VDW is not being stopped by the Antivirus. And also make sure files were not maipulated/deleted by users outside of the VDW interface.</p><br>
<p>I can't see any database version to download. How to download the database? Please close VDW and open again. Now you will be able to see the database version to download.</p><br>
<p>VDW throws invalid sequence error. Is something wrong with my FastQ files?
Please make sure FastQ file names have only alphanumeric characteres and dashes. Other characters in the file name can cause errors.</p><br>
<p>Send an email to VirusDetect.Windows@cgiar.org to report bugs or receive more information</p><br>
<br>
</div>
</div>
</body>
</html>