Skip to content

Instantly share code, notes, and snippets.

View tomsing1's full-sized avatar

Thomas Sandmann tomsing1

View GitHub Profile
@SachaEpskamp
SachaEpskamp / global.R
Last active October 22, 2021 08:55
A general shiny app to import and export data to R. Note that this can be used as a starting point for any app that requires data to be loaded into Shiny.
library("shiny")
library("foreign")
@martijnvermaat
martijnvermaat / README.md
Last active November 11, 2020 13:09
Download SRA run files for given sample names

Download SRA run files for given sample names

Have all sample names in samples, one per line and run:

for sample in $(cat samples); do
    IFS=$'\n'
    for line in $(./sra-runs.py $sample); do
        echo $sample $line >> runs

done

@kumabotz
kumabotz / gist:4211276
Created December 5, 2012 01:42
Stashing your changes
# Stashing is a great way to pause what you’re currently working on and come
# back to it later. For example, if you working on that awesome, brand new
# feature but someone just found a bug that you need to fix. Add your changes to
# the index using
$ git add .
# Or add individual files to the index, your pick. Stash your changes away with:
$ git stash
@OnesimusUnbound
OnesimusUnbound / quote.txt
Last active September 3, 2024 12:53
Programming Quotes
[T]he difference between a bad programmer and a
good one is whether he considers his code or his
data structures more important. Bad programmers
worry about the code. Good programmers worry about
data structures and their relationships.
-- Linus Torvalds
~~~
Clarity and brevity sometimes are at odds.
When they are, I choose clarity.
-- Jacob Kaplan-Moss