Skip to content

Latest commit

 

History

History
193 lines (181 loc) · 6.65 KB

index.md

File metadata and controls

193 lines (181 loc) · 6.65 KB
title
Catalog of IDR images formatted as OME-NGFF
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "DataCatalog", "inLanguage": "en-US", "name": "IDR OME-NGFF Samples", "publisher": { "@type": "Organization", "name": "GitHub" }, "copyrightYear": "2022", "discussionUrl": "https://github.com/IDR/ome-ngff-samples/issues", "accessMode": "visual", "measurementTechnique": "microscopy" } </script> <style> .page-content .wrapper { box-sizing: border-box; width: 100%; max-width: 100%; } .dataTables_scrollHeadInner { margin: 0 auto; } .icon { width: 24px; height: 24px; } .icon.vizarr { width: 27px; } .no_border { border: none; background: none; padding: 0; } .shake { animation: 0.1s linear 0s infinite alternate seesaw; } @-webkit-keyframes seesaw { from { transform: rotate(-0.05turn) } to { transform: rotate(0.05turn); } } @keyframes seesaw { from { transform: rotate(-0.05turn) } to { transform: rotate(0.05turn); } } </style> {% assign s3key = "EMBL-EBI bucket (current)" %} {% assign studykey = "Study" %} {% for rec in site.data.table %} {% capture image_name %}{{ rec.[s3key] | split: "/" | last }}{% endcapture %} {% capture image_id %}{{ image_name | split: "." | first}}{% endcapture %} {% endfor %}
OME-NGFF version Thumbnail EMBL-EBI S3 key SizeX SizeY SizeZ SizeC SizeT Axes Wells Fields Keywords License Study DOI Date added
{{ rec["OME-NGFF version"] }} IDR thumbnail for Image:{{ rec[ {{ image_name }}
{% if rec['Wells'] or rec['Keywords'] != "bioformats2raw.layout" %} {% endif %} {% unless rec['Wells'] %} {% unless rec["OME-NGFF version"] == "0.1" or rec["OME-NGFF version"] == "0.2" or rec["OME-NGFF version"] == "0.3" %} {% endunless %} {% endunless %}
{{ rec.["SizeX"] }} {{ rec.["SizeY"] }} {{ rec.["SizeZ"] }} {{ rec.["SizeC"] }} {{ rec.["SizeT"] }} {{ rec.["Axes"] }} {{ rec.["Wells"] }} {{ rec.["Fields"] }} {{ rec.["Keywords"] }} {{ rec.["License"] }} {{ rec.["Study"] }}
{% if rec["Wells"] %} {% else %} {% endif %}
{{ rec.["DOI"] }} {{ rec.["Date added"] }}
<script> $(document).ready( function () { $('#table').DataTable( { "scrollX": true, "pageLength": 100, "order": [[ 15, 'desc' ]] }); } ); function copyTextToClipboard(text) { var textArea = document.createElement("textarea"); // Place in the top-left corner of screen regardless of scroll position. textArea.style.position = 'fixed'; textArea.value = text; document.body.appendChild(textArea); textArea.focus(); textArea.select(); var successful; try { successful = document.execCommand('copy'); } catch (err) { console.log('Oops, unable to copy'); } document.body.removeChild(textArea); if (successful) { // show user that copying happened - update text on element (e.g. button) let target = event.target; let html = target.innerHTML; target.classList.add("shake"); setTimeout(() => { // reset after 1 second target.classList.remove("shake"); }, 1000) } else { console.log("Copying failed") } } </script>