Skip to content

Instantly share code, notes, and snippets.

@amilamanoj
amilamanoj / GA4GH_VCF_Streaming_API.md
Last active February 3, 2019 09:34
VCF Streaming API Server and Specification - GSoC 2017

VCF Streaming API: Server and Specification - GSoC 2017

About the organization

The Global Alliance for Genomics and Health (GA4GH)

The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading Genome Institutes and Centers with IT industry leaders to create global standards and tools for the secure, privacy respecting and interoperable sharing of Genomic data.

@amilamanoj
amilamanoj / WebSocket Server
Created June 22, 2013 17:29
Secure WebSocket Server with Jetty 9
package org.amila.sample.websocket.server;
import org.eclipse.jetty.http.HttpVersion;
import org.eclipse.jetty.server.*;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.server.handler.HandlerCollection;
import org.eclipse.jetty.util.resource.FileResource;
import org.eclipse.jetty.util.resource.Resource;
import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.eclipse.jetty.websocket.server.WebSocketHandler;
@amilamanoj
amilamanoj / Jetty 9 Websocket Maven
Created June 22, 2013 17:05
Maven dependencies for Jetty 9.0.3 WebSocket libraries
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-server</artifactId>
<version>9.0.3.v20130506</version>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-server</artifactId>
<version>9.0.3.v20130506</version>
</dependency>