Skip to content

Instantly share code, notes, and snippets.

View Colelyman's full-sized avatar

Cole Lyman Colelyman

View GitHub Profile
@Colelyman
Colelyman / View Aligned Reads
Last active October 17, 2018 03:34
This gist is a mini tutorial on how to view aligned reads in the command line using samtools tview.
# Convert .sam file to .bam file
$ samtools view -b -S -o [outputted bam file] [inputted sam file]
# Sort and index the .bam file
$ samtools sort [inputted bam file] > [output prefix of bam file].sorted
$ samtools index [inputted bam file].sorted.bam
@Colelyman
Colelyman / jupyter.sh
Last active October 24, 2018 11:07
Get Jupyter Notebook Running in SSH Tunnel
user@server$ jupyter notebook --no-browser --port=8889
# run client side
user@client$ ssh -N -f -L localhost:8000:localhost:8889 remote_user@remote_host
firefox http://localhost:8000
# source: https://coderwall.com/p/ohk6cg/remote-access-to-ipython-notebooks-via-ssh
@Colelyman
Colelyman / AndroidManifest.xml
Created April 7, 2016 19:45
Orientation hack for activities.
<activity android:name=".ui.activities.MainActivity"
android:configChanges="orientation|keyboardHidden|screenSize">
android:label="Main Activity"
android:name=".MainActivity"
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
@Colelyman
Colelyman / gist:4049013
Created November 9, 2012 23:30
Simon 124 Cole Lyman
// Beginning of our code
int beat_counter = 0;
int rand_array[] = 100;
bool fail = true;
setrandSeed();
do { // loop for each round
rand_array[beat_counter] = rand16();