Skip to content

Instantly share code, notes, and snippets.

View liberaliscomputing's full-sized avatar

Meen Chul Kim liberaliscomputing

View GitHub Profile
@liberaliscomputing
liberaliscomputing / 00-Specimen-parental.json
Last active August 15, 2022 19:09
INCLUDE/KF GenomicWorkflow Proposal 1B
{
"resourceType": "Specimen",
"id": "267782",
"meta": {
"versionId": "1",
"lastUpdated": "2022-03-11T19:23:28.018+00:00",
"source": "#3JFyWT9UTXBaF1xT",
"profile": [
"http://hl7.org/fhir/StructureDefinition/Specimen"
],
@liberaliscomputing
liberaliscomputing / 00-Specimen-parental.json
Last active August 15, 2022 19:09
INCLUDE/KF GenomicWorkflow Proposal 1A
{
"resourceType": "Specimen",
"id": "267782",
"meta": {
"versionId": "1",
"lastUpdated": "2022-03-11T19:23:28.018+00:00",
"source": "#3JFyWT9UTXBaF1xT",
"profile": [
"http://hl7.org/fhir/StructureDefinition/Specimen"
],
@liberaliscomputing
liberaliscomputing / setOps.js
Created May 19, 2016 12:30 — forked from jabney/setOps.js
Fast JavaScript set operations: union, intersection, difference, complement, and equals. Includes support for objects.
// setOps.js MIT License © 2014 James Abney http://github.com/jabney
// Set operations union, intersection, symmetric difference,
// relative complement, equals. Set operations are fast.
(function(so) {
'use strict';
var uidList = [], uid;
// Create and push the uid identity method.