This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs lang="markdown"> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "VueMaterialBackbone", | |
"type": "window", | |
"tags": [], | |
"ui": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import gzip | |
# download idmapping.dat.gz from uniprot | |
# wget ftp://ftp.ebi.ac.uk/pub/databases/uniprot/current_release/knowledgebase/idmapping/idmapping.dat.gz | |
id_mapping_file = './idmapping.dat.gz' | |
id_mapping = {} | |
for line in gzip.open(id_mapping_file): | |
line = line.decode('utf8').strip() | |
ac, pred, obj = line.split('\t') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "HPA-UMAP-Studio", | |
"type": "web-worker", | |
"tags": [], | |
"ui": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs> | |
# NGFF image file Loader for ImageJ.JS | |
[Next-generation file formats](https://ngff.openmicroscopy.org/latest/) is a specification for storing bioimaging data in the cloud. | |
This plugin enalbes loading NGFF image into ImageJ.JS. | |
The implementation is adapted from the [OMERO ImJoy](https://github.com/will-moore/omero-imjoy) made by @will-moore | |
</docs> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<docs> | |
[TODO: write documentation for this plugin.] | |
</docs> | |
<config lang="json"> | |
{ | |
"name": "HPA-UMAP-Nucleolus", | |
"type": "web-worker", | |
"tags": [], | |
"ui": "", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body> | |
<button id="button" onclick="connect()">Connect</button> | |
<div id="div"></div><input id="chat"></input><br> | |
<script src="https://webrtc.github.io/adapter/adapter-latest.js"></script> | |
<script> | |
var pc = new RTCPeerConnection(), dc, enterPressed = e => e.keyCode == 13; | |
var connect = () => init(dc = pc.createDataChannel("chat")); | |
pc.ondatachannel = e => init(dc = e.channel); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Contains the routines loaded by the plugin iframe under web-browser | |
* in case when worker failed to initialize | |
* | |
* Initializes the web environment version of the platform-dependent | |
* connection object for the plugin site | |
*/ | |
import { connectRPC } from "./pluginCore.js"; | |
import { RPC, API_VERSION } from "./rpc.js"; | |
import { MessageEmitter, randId, normalizeConfig } from "./utils.js"; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.