This file contains hidden or 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
#! /usr/bin/env Rscript | |
# -*- mode: R -*- | |
# Above tells emacs to go into R mode for editing (must be second line). | |
## | |
## chromCor: | |
## | |
## Compute correlation of two jarched bed files along a chromosome (default chr19). | |
## | |
## To run this script, turn the execute bit on and run just as any other script file. The Rscript |
This file contains hidden or 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
{ | |
"editable" : false, | |
"zoomFixed" : false, | |
"trackSourceServers" : [ | |
"/api/v1", | |
"http://higlass.io/api/v1" | |
], | |
"exportViewUrl" : "/api/v1/viewconfs/", | |
"views" : [ | |
{ |
This file contains hidden or 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
{ | |
"editable": false, | |
"zoomFixed": false, | |
"trackSourceServers": [ | |
"/api/v1", | |
"http://higlass.io/api/v1" | |
], | |
"exportViewUrl": "/api/v1/viewconfs/", | |
"views": [ | |
{ |
This file contains hidden or 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
{ | |
"editable": false, | |
"zoomFixed": false, | |
"trackSourceServers": [ | |
"/api/v1", | |
"http://higlass.io/api/v1" | |
], | |
"exportViewUrl": "/api/v1/viewconfs/", | |
"views": [ | |
{ |
This file contains hidden or 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
{ | |
"editable": false, | |
"zoomFixed": false, | |
"trackSourceServers": [ | |
"/api/v1", | |
"http://higlass.io/api/v1" | |
], | |
"exportViewUrl": "/api/v1/viewconfs/", | |
"views": [ | |
{ |
This file contains hidden or 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 ReactDOM from 'react-dom' | |
import * as THREE from 'three/src/Three' | |
import React, { useState, useRef, useMemo } from 'react' | |
// A THREE.js React renderer, see: https://github.com/drcmda/react-three-fiber | |
import { Canvas, useRender } from 'react-three-fiber' | |
// A React animation lib, see: https://github.com/react-spring/react-spring | |
import { useSpring, animated } from 'react-spring/three' | |
import './styles.css' |
This file contains hidden or 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
"use strict"; | |
var url = "http://explorer.altius.org/app/?config=SUFTOi4wT5S79NgyLKPTcg&chr=chr3&start=181500000&stop=181800000"; | |
//var url = 'http://higlass.io/app'; | |
var page = require('webpage').create(); | |
page.viewportSize = { | |
width: 1024, | |
height: 1280 |
This file contains hidden or 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
#!/usr/bin/env Rscript | |
args <- commandArgs(TRUE) | |
if (length(args) != 3) { | |
cat("Usage: reference_bedmap_make_overlap_figure.Rscript map.bed ref.bed figure.pdf\n") | |
q(status=-1) | |
} | |
mapFn <- args[1] | |
refFn <- args[2] |
This file contains hidden or 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
#!/usr/bin/env python | |
from selenium import webdriver | |
from selenium.webdriver.support.ui import WebDriverWait | |
from selenium.webdriver.support import expected_conditions as EC | |
from selenium.webdriver.common.by import By | |
from selenium.common.exceptions import TimeoutException | |
import sys | |
import time | |
import base64 |