Skip to content

Instantly share code, notes, and snippets.

View nturaga's full-sized avatar
🌏
Focusing

Nitesh Turaga nturaga

🌏
Focusing
View GitHub Profile
@jxtx
jxtx / bioc2018.md
Last active August 22, 2018 14:30
#bioC 2018 Conference Notes
Overview: bit.ly/gcc2014workflows
Tool Authors: http://planemo.readthedocs.org/en/latest/writing_standalone.html#collections
History Management: https://wiki.galaxyproject.org/Histories#Dataset_Collections
An Analysis (RNA-seq):
1. https://vimeo.com/128265983
2. https://vimeo.com/128268401
api_key:
galaxy_instance: 54.161..97
# Each dbkey should posses keys and values for all DMs that require
# arguments other than the dbkey itself
dbkeys:
# - dbkey: sacCer2
# genome_version: EquCab2.70
# - dbkey: sacCer1
# genome_version: EquCab2.70
# - dbkey: phiX
@nturaga
nturaga / chatminder.py
Last active August 29, 2015 14:15 — forked from dannon/chatminder.py
#!/usr/bin/python
"""
Python script for tailing irc logs and mailing notifications.
"""
import os
import smtplib
import pickle
import copy
from optparse import OptionParser
@ejjunju
ejjunju / Readme.txt
Created May 29, 2014 17:09
Simple analysis of a fwe aspects of the Wikipedia World cup 2014 squads data
World cup data analysis script!!
The data in cup.txt is taken from wikipedia(http://en.wikipedia.org/wiki/2014_FIFA_World_Cup_squads). the script cup.r analyses the data to create interesting charts about the 2014 world cup squads. Charts include boxplots og age, number of home/foreign based players for each country, clubs with more than 4 players in the world cup and leagues with more than 10 players in the World cup.
The data shows that the youngest team is the Netherlands(Dutch) team is the youngest. Only Mexico, Netherlands, Spain, England, Italy, Russia, germany and Iran have more home-based players than foreign based players. Most teams have less players based in their home countries. The European clubs dominate the number of clubs with the most players in the worls cup (gaian not a suprise)!! The world cup 2014 appears to be a sort of "European Cup"!!
@dsparks
dsparks / Heatmap.R
Last active August 19, 2022 06:54
ggplot2 heatmap with "spectral" palette
doInstall <- TRUE # Change to FALSE if you don't want packages installed.
toInstall <- c("ggplot2", "reshape2", "RColorBrewer")
if(doInstall){install.packages(toInstall, repos = "http://cran.us.r-project.org")}
lapply(toInstall, library, character.only = TRUE)
# Generate a random matrix
# This can be any type of numeric matrix,
# though we often see heatmaps of square correlation matrices.
nRow <- 9
nCol <- 16
@datagrok
datagrok / gist:2199506
Last active April 8, 2023 17:36
Virtualenv's `bin/activate` is Doing It Wrong