Publications by Nathan Brouwer

Accessing data from Google Docs

13.11.2021

The goal of this exercise is to make you familiar with how to download data from Google Sheets and to briefly review some key concepts R functions and coding concepts. We’ll do the following things Packages ## Google sheets download package # comment this out when you are done # install.packages("googlesheets4") library(googlesheets4) # comp ...

4096 sym R (17765 sym/122 pcs) 1 img

ggplot2 and ggpubr test

18.11.2021

gpubr - allometric data Allometric data - classic case of regression, using logs, using non-linear model too library(compbio4all) Vocab wrapper ggplot2 ggpubr $ operator smoother continous data categorical data Learning objectives Know what a wrapper is Know the relationship between ggplot2 and ggpubr Be able to run code that makes graphs wit...

4282 sym R (2471 sym/35 pcs) 9 img

Testing Google Sheets Access

13.11.2021

The goal of this exercise is to make you familiar with how to download data from Google Sheets and to briefly review some key concepts R functions and coding concepts. We’ll do the following things download a list of RefSeq accessions from a Google sheet remove the NAs using na.omit() select out all but one isoform using duplicated() Packages...

865 sym R (2755 sym/25 pcs)

Downloading DNA sequences as FASTA files in R

05.11.2021

This is a modification of “DNA Sequence Statistics” from Avril Coghlan’s A little book of R for bioinformatics.. Most of the text and code was originally written by Dr. Coghlan and distributed under the Creative Commons 3.0 license. NOTE: There is some redundancy in this current draft that needs to be eliminated. Functions library() help...

13025 sym R (1997 sym/40 pcs)

Testing Working Directory

04.11.2021

Default working directory Open up this .Rmd file in RStudio. In the code chunk below type getwd() and run it. “wd” means “working directory”, or where R will currently save files if you tell it to save anything. # Get the current working directory getwd() ## [1] "/Users/elizabeth.gilfeather/University of Pittsburgh/University of Pittsburg...

1708 sym R (351 sym/4 pcs)

Adjusting dotplot setting in R to investigate sequence repeats

26.10.2021

In this exercise we’ll look at a sequence with known tandem repeats. We’ll load the data, explore it in R, then use the dotPlot() function to make various dotplots to see how changing settings for dotPlots() help make repeat patterns stand out. Add the necessary code to make this script functional. Preliminaries Load packages library(seqinr...

1539 sym R (7040 sym/62 pcs) 12 img

Investigating your shroom for the presence of repeats

26.10.2021

Add the necessary code to make this script function. Preliminaries Load packages library(seqinr) library(rentrez) library(compbio4all) library(Biostrings) ## Loading required package: BiocGenerics ## Loading required package: parallel ## ## Attaching package: 'BiocGenerics' ## The following objects are masked from 'package:parallel': ## ## ...

1231 sym R (6121 sym/38 pcs) 5 img

Working Directory Test

14.10.2021

Default working directory Open up this .Rmd file in RStudio. In the code chunk below type getwd() and run it. “wd” means “working directory”, or where R will currently save files if you tell it to save anything. # Get the current working directory getwd() ## [1] "/Users/elizabeth.gilfeather/Desktop/CompBio" Copy and paste the current wd i...

1708 sym R (248 sym/4 pcs)

A BioInformatics Workflow

30.09.2021

Assignment: Your assignment is to use your notes from class - along with help from classmates, UTAs, and me - to turn this script into a fleshed-out description of what is going on. This is a substantial project - we’ll work on it in steps over the rest of the unit. We are currently focused on the overall process and will cover the details over...

5310 sym R (12836 sym/53 pcs) 1 img

Introduction to dotplots in R

26.10.2021

Sequence dotplots in R By: Avril Coghlan. Adapted, edited and expanded: Nathan Brouwer under the Creative Commons 3.0 Attribution License (CC BY 3.0). NOTE: I’ve added some new material that is rather terse and lacks explication. Good sources of more info: https://omicstutorials.com/interpreting-dot-plot-bioinformatics-with-an-example/ http://r...

4061 sym R (1593 sym/14 pcs) 9 img