diff options
author | lltommy | 2020-11-13 18:41:08 +0100 |
---|---|---|
committer | lltommy | 2020-11-13 18:41:08 +0100 |
commit | bff4b4af7014fbf325b36e5ee149debe8e5dfd47 (patch) | |
tree | 67b8396a71850fa42870cbb091c0e4a0b47febf2 /bh20simplewebuploader/templates | |
parent | 87ec8e1d6c5b3ca5375afd4a114f73fad3aa0b68 (diff) | |
download | bh20-seq-resource-bff4b4af7014fbf325b36e5ee149debe8e5dfd47.tar.gz bh20-seq-resource-bff4b4af7014fbf325b36e5ee149debe8e5dfd47.tar.lz bh20-seq-resource-bff4b4af7014fbf325b36e5ee149debe8e5dfd47.zip |
Initial commit: SPARQL playground, which replaces the demo page. Some queries have to be adjusted once changed metadata schema is live
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/demo.html | 22 | ||||
-rw-r--r-- | bh20simplewebuploader/templates/menu.html | 2 |
2 files changed, 17 insertions, 7 deletions
diff --git a/bh20simplewebuploader/templates/demo.html b/bh20simplewebuploader/templates/demo.html index 1edca00..ffebc91 100644 --- a/bh20simplewebuploader/templates/demo.html +++ b/bh20simplewebuploader/templates/demo.html @@ -5,7 +5,7 @@ {% include 'banner.html' %} {% include 'menu.html' %} - <p>The Virtuoso database contains <span id="CounterDB"></span> public sequences! The examples here should provide a starting point to explore our data in our public <a href="http://sparql.genenetwork.org/sparql">SPARQL endpoint</a> or via <a href="https://covid-19-sparql.expasy.org/">SIB COVID-19 Integrated Knowledgebase</a>. See also our documentation <a href="http://127.0.0.1:5000/blog?id=using-covid-19-pubseq-part1">here</a> for more information!</p> + <p>The Virtuoso database contains <span id="CounterDB"></span> public sequences! The examples here should provide a starting point to explore our data in our public <a href="http://sparql.genenetwork.org/sparql">SPARQL endpoint</a> or via <a href="https://covid-19-sparql.expasy.org/">SIB COVID-19 Integrated Knowledgebase</a>. See also our documentation <a href="http://covid-19.genenetwork.org/blog?id=using-covid-19-pubseq-part1">here</a> for more information!</p> <!-- <div class="search"> <input id="search-input" type="search" placeholder="FASTA uri" required> @@ -21,11 +21,21 @@ <section class="search-section"> <div class="filter-options" action="#"> <div> - <button class="button" onclick="fetchSEQCountBySpecimen()">Count by Specimen source</button> <button class="button" onclick="fetchSEQCountByLocation()">Count by Location</button> - <button class="button" onclick="fetchSEQCountByTech()">Count by Sequencer</button> - <!-- <button class="button" onclick="fetchAllaccessions()">Show All accessions</button> --> - <button class="button" onclick="fetchSEQCountbyContinent()">Count by Continent</button> + <button class="button" onclick="demoGetSEQCountbytech()">Count by Sequencer</button> + <button class="button" onclick="fetchInstitutesPublications()">Get list of publications</button> + <button class="button" onclick="fetchSEQCountBySpecimen()">Count by Specimen source</button> + <button class="button" onclick="demoGetSEQCountbytechContinent()">Sequence Technologies used by continent</button> + <button class="button" onclick="getNYsamples()">Get all NY samples</button> + <button class="button" onclick="fetchAuthors()">Get authors</button> + <button class="button" onclick="demoGetSequencePerDate()">Show Sequences before submission date</button> + <button class="button" onclick="demoLocationGps()">Locations and their GPS</button> + + + + + <!-- <button class="button" onclick="fetchAllaccessions()">Show All accessions</button> + <button class="button" onclick="fetchSEQCountbyContinent()">Count by Continent</button>--> </div> </div> @@ -36,7 +46,7 @@ <section> - <div id="table"></div> + <div id="playground"></div> </section> {% include 'footer.html' %} diff --git a/bh20simplewebuploader/templates/menu.html b/bh20simplewebuploader/templates/menu.html index 8e6ef52..cf32fec 100644 --- a/bh20simplewebuploader/templates/menu.html +++ b/bh20simplewebuploader/templates/menu.html @@ -4,7 +4,7 @@ <a href="/download" class="{{ 'active' if menu=='DOWNLOAD' }}">DOWNLOAD</a> <a href="/upload" class="{{ 'active' if menu=='UPLOAD' }}">UPLOAD</a> <a href="/status" class="{{ 'active' if menu=='STATUS' }}">STATUS</a> - <a href="/demo" class="{{ 'active' if menu=='DEMO' }}">DEMO</a> + <a href="/demo" class="{{ 'active' if menu=='DEMO' }}">SPARQL-PLAYGROUND</a> <a href="/export" class="{{ 'active' if menu=='EXPORT' }}">EXPORT</a> <a href="/blog" class="{{ 'active' if menu=='BLOG' }}">DOCS</a> <a href="/about" class="{{ 'active' if menu=='ABOUT' }}">ABOUT</a> |