- Related Setup: https://gist.github.com/hofmannsven/6814278
- Related Pro Tips: https://ochronus.com/git-tips-from-the-trenches/
- Interactive Beginners Tutorial: http://try.github.io/
- Git Cheatsheet by GitHub: https://services.github.com/on-demand/downloads/github-git-cheat-sheet/
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 | |
| set -e | |
| set -u | |
| set -o pipefail | |
| # A script to subsample Fasta/FastQ files using Seqtk | |
| if ! `command -v seqtk > /dev/null 2> /dev/null` | |
| then | |
| echo "Failed to find seqtk!" |
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(ggplot2) | |
| setwd("<my working directory>") | |
| removeExtraLine <- function(x) { | |
| x[,2:length(x)] | |
| } | |
| createInitialDataset <- function(x, sampleName) { | |
| extraLineRemoved <- t(removeExtraLine(x)) |
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 | |
| #$ -V | |
| #$ -S /bin/bash | |
| #Embrrassingly Parallel Computations Using the Sun Grid Engine | |
| #Array Job | |
| #qsub -pe make 3 -cwd -j y -N hong -t 1-3 test.sh | |
| #MANIFEST=sample1.txt | |
| #SAMPLE=`awk "NR==${SGE_TASK_ID}" ${MANIFEST}` | |
| #echo $SAMPLE |
This is just a quick list of resourses on TDA that I put together for @rickasaurus after he was asking for links to papers, books, etc on Twitter and is by no means an exhaustive list.
Both Carlsson's and Ghrist's survey papers offer a very good introduction to the subject
- Topology and Data by Gunnar Carlsson
- Barcodes: The Persistent Topology of Data by Robert Ghrist
- Extracting insights from the shape of complex data using topology A good introductory paper in Nature on the
Mapperalgorithm.