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
#!/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..." | |
## disable screen saver + sleep before starting the script | |
## TODO: check if zsh + powerlevel2k + zshX already installed. If reinstalled script will exit with error |
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 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: |
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 | |
#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 ) |
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
### Keybase proof | |
I hereby claim: | |
* I am idot on github. | |
* I am idotamir (https://keybase.io/idotamir) on keybase. | |
* I have a public key whose fingerprint is CAB5 4E68 808E 591E 4F62 E3BE 0271 0975 3DDF F04E | |
To claim this, I am signing this object: |
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
## Prepare data to plot in Euler Grid. | |
## Quantity or binary table with columns for samples and rows for features | |
#### FUNCTIONS ####### | |
## convert a (table, matrix,) data.frame to either 0/1 or FALSE/TRUE based on whether values exceed threshold. | |
## to invert a threshold use: new.table <- table == FALSE |
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
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> |
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 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()) |
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
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 |
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
////////////////////////////////////// | |
/// Grid Directive to Angular 1.0.2 | |
////////////////////////////////////// | |
// To use: | |
// <script> | |
// var app = angular.module('myapp', ['ngGrid']); | |
// var Ctrl = function($scope) { $scope.todos = [...] } | |
// </script> | |
// <div ng-app="myapp"> |
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 scala.collection.mutable.ListBuffer | |
import akka.actor.{Actor,ActorRef} | |
import akka.actor.Actor._ | |
import akka.routing.{ Listeners, Listen } | |
//Represents a domain event | |
trait Event | |
//A builder to create domain entities | |
trait EntityBuilder[Entity] { |
NewerOlder