- Open the "Template Files" pane in BibDesk's preferences
- Use the "+" button to add a new general template
- Double click the red text and choose
citeServiceTemplateMD.txt
- Open the "Citation" pane in BibDesk's preferences
- Change "Default format" to "Template"
- Change "Template" to "citeServiceTemplateMD"
A simple function to create plots of multiple protein isoforms in R.
This file has been truncated, but you can view the full file.
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
%% This BibTeX bibliography file was created using BibDesk. | |
%% https://bibdesk.sourceforge.io/ | |
%% Created for Aaron Wolen at 2019-11-29 14:10:31 -0600 | |
%% Saved with string encoding Unicode (UTF-8) | |
Anyone can improve this documentation by either directly contributing or suggesting additional topics to cover.
Anyone with a GitHub account can edit any page by simply clicking the "Edit Page" button. The wiki is written in [Markdown][md], an extremely simple markup language.
If you spot a typo, please correct it. If you'd like to add a topic, please do so.
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
# Download the latest GENCODE annotations file and export as a GRanges object | |
library(RCurl) | |
library(rtracklayer) | |
# Variables --------------------------------------------------------------- | |
# 'human' or 'mouse' | |
organism <- "human" |
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) | |
library(plyr) | |
# Load data --------------------------------------------------------------- | |
enrich.file <- "results/alspac/enrichment/enrichment-results-alspac-encode-dnase-h3k4me3.csv" | |
enrich.df <- read.csv(enrich.file, stringsAsFactors = FALSE) | |
# address stem-cell samples missing tissue annotation |
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
# Burrows-Wheeler transformation | |
# | |
# Transform: | |
# out <- bwt('SIX.MIXED.PIXIES.SIFT.SIXTY.PIXIE.DUST.BOXES') | |
# | |
# Reverse: | |
# ibwt(out) | |
bwt <- function(x, eof = "!") { | |
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
javascript:var%20insert_proxy%20=%20function(proxy)%20{var%20url%20=%20document.URL;if%20(url.indexOf(proxy)%20===%20-1)%20{var%20parser%20=%20document.createElement(%27a%27);parser.href%20=%20url;var%20host%20=%20parser.host;if%20(host%20==%20%27www.ncbi.nlm.nih.gov%27)%20{host%20=%20host.replace(/\./g,%20%27-%27);};host%20=%20host.concat(proxy);proxy_url%20=%20url.replace(parser.host,%20host);window.open(proxy_url,%20%27_self%27);};};insert_proxy(%27.proxy.library.vcu.edu%27); |
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
# Parse pathway file containing entries from the KEGG enzyme, orthology and | |
# pathway databases. | |
# | |
# For cases when there are multiple matches across databases all combinations | |
# of the match are returned. For example, some enzyme entries map to multiple | |
# orthologies: | |
# | |
# K00918 ADP-dependent phosphofructokinase/glucokinase [EC:2.7.1.146 2.7.1.147] | |
# | |
# will become... |