Publications by Bhuvitha Chagantipati

FAQ: How do I make a scatterplot matrix from a dataframe or matrix?

19.12.2021

Question: How do I make a scatterplot matrix from a dataframe or matrix? Data We’ll use the “palmerpenguins” packages (https://allisonhorst.github.io/palmerpenguins/) to address this question. You’ll need to install the package with install.packages(“palmerpenguins”) if you have not done so before, call library(““palmerpenguins�...

501 sym R (391 sym/3 pcs) 1 img 1 tbl

Final Portfolio

18.12.2021

Introduction This code compiles summary information about the gene HFE(Homeostatic Iron Regulator). It also generates alignments and a phylogeneitc tree to indicating the evolutionary relationship betweeen the human version of the gene and its homologs in other species. Resources/References RefSeq Gene: https://www.ncbi.nlm.nih.gov/gene/3077 Ref...

2548 sym R (34051 sym/146 pcs) 6 img 8 tbl

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 (2474 sym/35 pcs) 9 img

Pairwise alignment

17.11.2021

Global proteins aligments in R By: Avril Coghlan. Adapted, edited and expanded: Nathan Brouwer under the Creative Commons 3.0 Attribution License (CC BY 3.0). Preliminaries library(compbio4all) library(Biostrings) Download sequences As we did in the previous lesson on dotplots, we’ll look at two sequences. # Download ## sequence 1: NP_000401....

11083 sym R (7294 sym/60 pcs)

Accessing data from Google Docs

16.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 # install.packages("googlesheets4") library(googlesheets4) # comp bio packages library(seqinr) library...

3901 sym R (17575 sym/122 pcs) 1 img

Testing Google Sheets Access

15.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 (2756 sym/25 pcs)

Pie Chart

04.11.2021

Introduction Alice B. Popejoy and Stephanie M. Fullerton collected data to support that certain drugs may be less effective, or even unsafe, in some populations because of genetic differences. To determine ancestry, they analysed the sample descriptions included in the GWAS Catalog with an approach similar to that used in 2009. Data was collected...

1572 sym R (890 sym/3 pcs) 1 img

Introduction to dotplots in R

28.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...

3763 sym R (1603 sym/13 pcs) 8 img

Bioinformatics Workflow

28.10.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...

9387 sym R (17090 sym/65 pcs) 1 img

Investigating Shroom for repeats

28.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': ## ## ...

1102 sym R (5257 sym/36 pcs) 4 img