blob: 1f0d9b7699fc7e1e977096b0f6f97a4f460e1a18 (
plain)
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
|
<!DOCTYPE html>
<html>
{% include 'header.html' %}
<body>
{% include 'banner.html' %}
{% include 'menu.html' %}
<h1>Export Data</h1>
<section class="blog">
COVID-19 PubSeq allows for exporting forms and data for other
services.
<h2>SPARQL</h2>
<p>
First of all, PubSeq exports a SPARQL endpoint
<a href="http://sparql.genenetwork.org/sparql/">here</a> that allows
you do do any query on the data. See this
<a href="/blog?id=using-covid-19-pubseq-part1">document</a> for
examples.
</p>
<h2>Export EBI/ENA Forms</h2>
<p>
Uploading data to EBI/ENA with PubSeq is described
<a href="/blog?id=using-covid-19-pubseq-part6">here</a>. To
export, first search for an uploaded entry through its
identifier:
</p>
<div class="search">
<input id="search-input" type="search" placeholder="e.g. MT246484" required>
<button class="button search-button" type="submit" onclick="searchGlobaltoDIVTable()">
<span class="icon ion-search">
<span class="sr-only">Search</span>
</span>
</button>
</div>
<section id="table" />
</section>
{% include 'footer.html' %}
<script type="text/javascript">
let scriptRoot = {{ request.script_root|tojson|safe }}; // examples
</script>
</body>
</html>
|