Skip to content

Instantly share code, notes, and snippets.

@idot
idot / combinePlots.R
Last active December 16, 2015 00:18
combine ggplot2 plots
library(gridExtra)
getLegend <- function(tp.gplot, position="bottom", box="horizontal"){
tmp <- ggplot_gtable(ggplot_build(tp.gplot + theme(legend.position = position, legend.box = box)))
leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
legend <- tmp$grobs[[leg]]
return(legend)
}
#then extract height or width of legend
import java.io.{ BufferedReader, File, FileReader }
import scalaz._, Scalaz._, effect.IO, iteratee.{ Iteratee => I, _ }
object IterateeIOExample {
type ErrorOr[+A] = EitherT[IO, Throwable, A]
def openFile(f: File) = IO(new BufferedReader(new FileReader(f)))
def readLine(r: BufferedReader) = IO(Option(r.readLine))
def closeReader(r: BufferedReader) = IO(r.close())
@idot
idot / config.scala
Created November 26, 2013 15:24 — forked from retronym/config.scala
package scalaz.example
object Reader extends App {
/**
* Manual propagation of the environment (in the example, `contextRoot`.)
*/
object Config0 {
def fragment1(contextRoot: String) = <a href={contextRoot + "/foo"}>foo</a>
@idot
idot / chr2num.R
Created February 18, 2016 09:00
converts chromosome names from Tair10 from ngsplot to numeric names
#!/usr/bin/env Rscript
#copy .metainfo and .chrnames.endsembl from orig tar.gz in subfolder and change
# chrnames, ID
#tar with tar -zcvf Tair10numeric.tar.gz Tair10numeric
convertRdata <- function(){
id <- "Tair10numeric"
dir.create(id, recursive=TRUE, show=FALSE )
@idot
idot / per_item.nf
Created January 23, 2019 15:44
NextFlow results per item in set
#!/usr/bin/env nextflow
//the problem is 1, then the channel gets file(*) => UnixPath; > 1, then channel gets ArrayList<UnixPath>
starts=Channel.from(1,2,3,4)
process first {
input:
val start from starts
output:
@idot
idot / setup.sh
Last active January 18, 2024 09:26 — forked from bradp/setup.sh
New Mac Setup Script
#!/bin/bash
#echo "Creating an SSH key for you..."
#ssh-keygen -t rsa
#echo "Please add this public key to Github \n"
#echo "https://github.com/account/ssh \n"
#read -p "Press [Enter] key after this..."
XCODE=$(xcode-select -p 1>/dev/null;echo $?)
if [ $XCODE -ne 0 ]; then