A complete bioinformatics workflow in R

By: Nathan L. Brouwer

“Worked example: Building a phylogeny in R”

Introduction

Describe how phylogeneies can be used in biology (readings will be assigned)

Vocab

Make a list of at least 10 vocab terms that are important (don’t have to define)

Key functions

Make a list of at least 5 key functions Put in the format of package::function

Software Preliminaires

Add the necessary calls to library() to load call packages Indicate which packages cam from Bioconducotr, CRAN, and GitHub

Load packages into memory

# github packages
library(compbio4all)


# CRAN packages
library(rentrez)
library(seqinr)
library(ape)

# Bioconductor packages
library(msa)
library(Biostrings)

Downloading macromolecular sequences

In the following chunks, we are getting the Human shroom sequence and loading it into memory so that when we want to bring it up to compare it with another sequence, we can just call this object.

library(rentrez)
# Human shroom 3 (H. sapiens)
hShroom3 <- rentrez::entrez_fetch(db = "protein", 
                          id = "NP_065910", 
                          rettype = "fasta")

cat() is simply printing whatever is in hShroom3

cat(hShroom3)
## >NP_065910.3 protein Shroom3 [Homo sapiens]
## MMRTTEDFHKPSATLNSNTATKGRYIYLEAFLEGGAPWGFTLKGGLEHGEPLIISKVEEGGKADTLSSKL
## QAGDEVVHINEVTLSSSRKEAVSLVKGSYKTLRLVVRRDVCTDPGHADTGASNFVSPEHLTSGPQHRKAA
## WSGGVKLRLKHRRSEPAGRPHSWHTTKSGEKQPDASMMQISQGMIGPPWHQSYHSSSSTSDLSNYDHAYL
## RRSPDQCSSQGSMESLEPSGAYPPCHLSPAKSTGSIDQLSHFHNKRDSAYSSFSTSSSILEYPHPGISGR
## ERSGSMDNTSARGGLLEGMRQADIRYVKTVYDTRRGVSAEYEVNSSALLLQGREARASANGQGYDKWSNI
## PRGKGVPPPSWSQQCPSSLETATDNLPPKVGAPLPPARSDSYAAFRHRERPSSWSSLDQKRLCRPQANSL
## GSLKSPFIEEQLHTVLEKSPENSPPVKPKHNYTQKAQPGQPLLPTSIYPVPSLEPHFAQVPQPSVSSNGM
## LYPALAKESGYIAPQGACNKMATIDENGNQNGSGRPGFAFCQPLEHDLLSPVEKKPEATAKYVPSKVHFC
## SVPENEEDASLKRHLTPPQGNSPHSNERKSTHSNKPSSHPHSLKCPQAQAWQAGEDKRSSRLSEPWEGDF
## QEDHNANLWRRLEREGLGQSLSGNFGKTKSAFSSLQNIPESLRRHSSLELGRGTQEGYPGGRPTCAVNTK
## AEDPGRKAAPDLGSHLDRQVSYPRPEGRTGASASFNSTDPSPEEPPAPSHPHTSSLGRRGPGPGSASALQ
## GFQYGKPHCSVLEKVSKFEQREQGSQRPSVGGSGFGHNYRPHRTVSTSSTSGNDFEETKAHIRFSESAEP
## LGNGEQHFKNGELKLEEASRQPCGQQLSGGASDSGRGPQRPDARLLRSQSTFQLSSEPEREPEWRDRPGS
## PESPLLDAPFSRAYRNSIKDAQSRVLGATSFRRRDLELGAPVASRSWRPRPSSAHVGLRSPEASASASPH
## TPRERHSVTPAEGDLARPVPPAARRGARRRLTPEQKKRSYSEPEKMNEVGIVEEAEPAPLGPQRNGMRFP
## ESSVADRRRLFERDGKACSTLSLSGPELKQFQQSALADYIQRKTGKRPTSAAGCSLQEPGPLRERAQSAY
## LQPGPAALEGSGLASASSLSSLREPSLQPRREATLLPATVAETQQAPRDRSSSFAGGRRLGERRRGDLLS
## GANGGTRGTQRGDETPREPSSWGARAGKSMSAEDLLERSDVLAGPVHVRSRSSPATADKRQDVLLGQDSG
## FGLVKDPCYLAGPGSRSLSCSERGQEEMLPLFHHLTPRWGGSGCKAIGDSSVPSECPGTLDHQRQASRTP
## CPRPPLAGTQGLVTDTRAAPLTPIGTPLPSAIPSGYCSQDGQTGRQPLPPYTPAMMHRSNGHTLTQPPGP
## RGCEGDGPEHGVEEGTRKRVSLPQWPPPSRAKWAHAAREDSLPEESSAPDFANLKHYQKQQSLPSLCSTS
## DPDTPLGAPSTPGRISLRISESVLRDSPPPHEDYEDEVFVRDPHPKATSSPTFEPLPPPPPPPPSQETPV
## YSMDDFPPPPPHTVCEAQLDSEDPEGPRPSFNKLSKVTIARERHMPGAAHVVGSQTLASRLQTSIKGSEA
## ESTPPSFMSVHAQLAGSLGGQPAPIQTQSLSHDPVSGTQGLEKKVSPDPQKSSEDIRTEALAKEIVHQDK
## SLADILDPDSRLKTTMDLMEGLFPRDVNLLKENSVKRKAIQRTVSSSGCEGKRNEDKEAVSMLVNCPAYY
## SVSAPKAELLNKIKEMPAEVNEEEEQADVNEKKAELIGSLTHKLETLQEAKGSLLTDIKLNNALGEEVEA
## LISELCKPNEFDKYRMFIGDLDKVVNLLLSLSGRLARVENVLSGLGEDASNEERSSLYEKRKILAGQHED
## ARELKENLDRRERVVLGILANYLSEEQLQDYQHFVKMKSTLLIEQRKLDDKIKLGQEQVKCLLESLPSDF
## IPKAGALALPPNLTSEPIPAGGCTFSGIFPTLTSPL

This is assigning the sequences of each respective organism to an object so that we can easily compare them later on

# Mouse shroom 3a (M. musculus)
mShroom3a <- entrez_fetch(db = "protein", 
                          id = "AAF13269", 
                          rettype = "fasta")

# Human shroom 2 (H. sapiens)
hShroom2 <- entrez_fetch(db = "protein", 
                          id = "CAA58534", 
                          rettype = "fasta")


# Sea-urchin shroom
sShroom <- entrez_fetch(db = "protein", 
                          id = "XP_783573", 
                          rettype = "fasta")

This chunk is calculating the size of the sequence and printing it

nchar(hShroom3)
## [1] 2070
nchar(mShroom3a)
## [1] 2083
nchar(sShroom)
## [1] 1758
nchar(hShroom2)
## [1] 1673

Prepping macromolecular sequences

This function is going through the fasta file and cleaning it up so that the output display is nicer

fasta_cleaner
## function (fasta_object, parse = TRUE) 
## {
##     fasta_object <- sub("^(>)(.*?)(\\n)(.*)(\\n\\n)", "\\4", 
##         fasta_object)
##     fasta_object <- gsub("\n", "", fasta_object)
##     if (parse == TRUE) {
##         fasta_object <- stringr::str_split(fasta_object, pattern = "", 
##             simplify = FALSE)
##     }
##     return(fasta_object[[1]])
## }
## <bytecode: 0x0000000022fe5dc0>
## <environment: namespace:compbio4all>

You define a function to a name using <- function(){}. Inside the curly braces you give the code instructions for the function.

fasta_cleaner <- function(fasta_object, parse = TRUE){

  fasta_object <- sub("^(>)(.*?)(\\n)(.*)(\\n\\n)","\\4",fasta_object)
  fasta_object <- gsub("\n", "", fasta_object)

  if(parse == TRUE){
    fasta_object <- stringr::str_split(fasta_object,
                                       pattern = "",
                                       simplify = FALSE)
  }

  return(fasta_object[[1]])
}

This code chunk is putting each of the previous sequences that we loaded into the fasta cleaner function to clean them up so that they are just the sequence and nothing else

hShroom3  <- fasta_cleaner(hShroom3,  parse = F)
mShroom3a <- fasta_cleaner(mShroom3a, parse = F)
hShroom2  <- fasta_cleaner(hShroom2,  parse = F)
sShroom   <- fasta_cleaner(sShroom,   parse = F)
hShroom3
## [1] "MMRTTEDFHKPSATLNSNTATKGRYIYLEAFLEGGAPWGFTLKGGLEHGEPLIISKVEEGGKADTLSSKLQAGDEVVHINEVTLSSSRKEAVSLVKGSYKTLRLVVRRDVCTDPGHADTGASNFVSPEHLTSGPQHRKAAWSGGVKLRLKHRRSEPAGRPHSWHTTKSGEKQPDASMMQISQGMIGPPWHQSYHSSSSTSDLSNYDHAYLRRSPDQCSSQGSMESLEPSGAYPPCHLSPAKSTGSIDQLSHFHNKRDSAYSSFSTSSSILEYPHPGISGRERSGSMDNTSARGGLLEGMRQADIRYVKTVYDTRRGVSAEYEVNSSALLLQGREARASANGQGYDKWSNIPRGKGVPPPSWSQQCPSSLETATDNLPPKVGAPLPPARSDSYAAFRHRERPSSWSSLDQKRLCRPQANSLGSLKSPFIEEQLHTVLEKSPENSPPVKPKHNYTQKAQPGQPLLPTSIYPVPSLEPHFAQVPQPSVSSNGMLYPALAKESGYIAPQGACNKMATIDENGNQNGSGRPGFAFCQPLEHDLLSPVEKKPEATAKYVPSKVHFCSVPENEEDASLKRHLTPPQGNSPHSNERKSTHSNKPSSHPHSLKCPQAQAWQAGEDKRSSRLSEPWEGDFQEDHNANLWRRLEREGLGQSLSGNFGKTKSAFSSLQNIPESLRRHSSLELGRGTQEGYPGGRPTCAVNTKAEDPGRKAAPDLGSHLDRQVSYPRPEGRTGASASFNSTDPSPEEPPAPSHPHTSSLGRRGPGPGSASALQGFQYGKPHCSVLEKVSKFEQREQGSQRPSVGGSGFGHNYRPHRTVSTSSTSGNDFEETKAHIRFSESAEPLGNGEQHFKNGELKLEEASRQPCGQQLSGGASDSGRGPQRPDARLLRSQSTFQLSSEPEREPEWRDRPGSPESPLLDAPFSRAYRNSIKDAQSRVLGATSFRRRDLELGAPVASRSWRPRPSSAHVGLRSPEASASASPHTPRERHSVTPAEGDLARPVPPAARRGARRRLTPEQKKRSYSEPEKMNEVGIVEEAEPAPLGPQRNGMRFPESSVADRRRLFERDGKACSTLSLSGPELKQFQQSALADYIQRKTGKRPTSAAGCSLQEPGPLRERAQSAYLQPGPAALEGSGLASASSLSSLREPSLQPRREATLLPATVAETQQAPRDRSSSFAGGRRLGERRRGDLLSGANGGTRGTQRGDETPREPSSWGARAGKSMSAEDLLERSDVLAGPVHVRSRSSPATADKRQDVLLGQDSGFGLVKDPCYLAGPGSRSLSCSERGQEEMLPLFHHLTPRWGGSGCKAIGDSSVPSECPGTLDHQRQASRTPCPRPPLAGTQGLVTDTRAAPLTPIGTPLPSAIPSGYCSQDGQTGRQPLPPYTPAMMHRSNGHTLTQPPGPRGCEGDGPEHGVEEGTRKRVSLPQWPPPSRAKWAHAAREDSLPEESSAPDFANLKHYQKQQSLPSLCSTSDPDTPLGAPSTPGRISLRISESVLRDSPPPHEDYEDEVFVRDPHPKATSSPTFEPLPPPPPPPPSQETPVYSMDDFPPPPPHTVCEAQLDSEDPEGPRPSFNKLSKVTIARERHMPGAAHVVGSQTLASRLQTSIKGSEAESTPPSFMSVHAQLAGSLGGQPAPIQTQSLSHDPVSGTQGLEKKVSPDPQKSSEDIRTEALAKEIVHQDKSLADILDPDSRLKTTMDLMEGLFPRDVNLLKENSVKRKAIQRTVSSSGCEGKRNEDKEAVSMLVNCPAYYSVSAPKAELLNKIKEMPAEVNEEEEQADVNEKKAELIGSLTHKLETLQEAKGSLLTDIKLNNALGEEVEALISELCKPNEFDKYRMFIGDLDKVVNLLLSLSGRLARVENVLSGLGEDASNEERSSLYEKRKILAGQHEDARELKENLDRRERVVLGILANYLSEEQLQDYQHFVKMKSTLLIEQRKLDDKIKLGQEQVKCLLESLPSDFIPKAGALALPPNLTSEPIPAGGCTFSGIFPTLTSPL"

Comparing sequences

This code chunk is taking the human shroom sequence and the mouse shroom sequence and putting them in a pairwise alignment

# add necessary function
align.h3.vs.m3a <- Biostrings::pairwiseAlignment(
                  hShroom3,
                  mShroom3a)

This function is displaying the results of the pairwise alignment by showing both sequences lined up on on top of the other and also showing the score that was calculated from the pairwise alignment.

align.h3.vs.m3a
## Global PairwiseAlignmentsSingleSubject (1 of 1)
## pattern: MMRTTEDFHKPSATLN-SNTATKGRYIYLEAFLE...KAGALALPPNLTSEPIPAGGCTFSGIFPTLTSPL
## subject: MK-TPENLEEPSATPNPSRTPTE-RFVYLEALLE...KAGAISLPPALTGHATPGGTSVFGGVFPTLTSPL
## score: 2189.934

This chunk is showing the percent identity similarity between the two sequences by using the pid() function on the pairwise alignment from the last chunk.

# add necessary function
Biostrings::pid(align.h3.vs.m3a)
## [1] 70.56511

This chunk is carrying out anothother pairwise alignment, this time with two human sequences instead of a human and mouse sequence.

align.h3.vs.h2 <- Biostrings::pairwiseAlignment(
                  hShroom3,
                  hShroom2)

In this chunk, we are taking the specific score from the pairwise alignment and printing it. It is essentially the same as before, but instead of showing the sequences along with the score, it is just showing the score of the pairwise alignment.

score(align.h3.vs.h2)
## [1] -5673.853

Score() uses a specific grading scale to assign points to a long sequence by comparing the sequences in question. pid() is taking the sequences as they are and simply comparing them to see how close they are. in the form of a percentage.

Biostrings::pid(align.h3.vs.h2)
## [1] 33.83277

The shroom family of genes

This chunk is meant for organizing purposes and to have all the sequences gathered in one.

shroom_table <- c("CAA78718" , "X. laevis Apx" ,         "xShroom1",
            "NP_597713" , "H. sapiens APXL2" ,     "hShroom1",
            "CAA58534" , "H. sapiens APXL",        "hShroom2",
            "ABD19518" , "M. musculus Apxl" ,      "mShroom2",
            "AAF13269" , "M. musculus ShroomL" ,   "mShroom3a",
            "AAF13270" , "M. musculus ShroomS" ,   "mShroom3b",
            "NP_065910", "H. sapiens Shroom" ,     "hShroom3",
            "ABD59319" , "X. laevis Shroom-like",  "xShroom3",
            "NP_065768", "H. sapiens KIAA1202" ,   "hShroom4a",
            "AAK95579" , "H. sapiens SHAP-A" ,     "hShroom4b",
            #"DQ435686" , "M. musculus KIAA1202" ,  "mShroom4",
            "ABA81834" , "D. melanogaster Shroom", "dmShroom",
            "EAA12598" , "A. gambiae Shroom",      "agShroom",
            "XP_392427" , "A. mellifera Shroom" ,  "amShroom",
            "XP_783573" , "S. purpuratus Shroom" , "spShroom") #sea urchin

This next chunk takes the info that was in the “table” before and turning it into something that is a better output for a table. The last thing was just a vector, but this one makes it into an actual table.

# convert to Matrix
shroom_table_matrix <- matrix(shroom_table,
                                  byrow = T,
                                  nrow = 14)
# convert to Data Frame
shroom_table <- data.frame(shroom_table_matrix, 
                     stringsAsFactors = F)

# Naming the columns
names(shroom_table) <- c("accession", "name.orig","name.new")

# Create simplified species names
shroom_table$spp <- "Homo"
shroom_table$spp[grep("laevis",shroom_table$name.orig)] <- "Xenopus"
shroom_table$spp[grep("musculus",shroom_table$name.orig)] <- "Mus"
shroom_table$spp[grep("melanogaster",shroom_table$name.orig)] <- "Drosophila"
shroom_table$spp[grep("gambiae",shroom_table$name.orig)] <- "mosquito"
shroom_table$spp[grep("mellifera",shroom_table$name.orig)] <- "bee"
shroom_table$spp[grep("purpuratus",shroom_table$name.orig)] <- "sea urchin"

This is outputting whatever we just set up in the last chunk, which is the table

shroom_table
##    accession              name.orig  name.new        spp
## 1   CAA78718          X. laevis Apx  xShroom1    Xenopus
## 2  NP_597713       H. sapiens APXL2  hShroom1       Homo
## 3   CAA58534        H. sapiens APXL  hShroom2       Homo
## 4   ABD19518       M. musculus Apxl  mShroom2        Mus
## 5   AAF13269    M. musculus ShroomL mShroom3a        Mus
## 6   AAF13270    M. musculus ShroomS mShroom3b        Mus
## 7  NP_065910      H. sapiens Shroom  hShroom3       Homo
## 8   ABD59319  X. laevis Shroom-like  xShroom3    Xenopus
## 9  NP_065768    H. sapiens KIAA1202 hShroom4a       Homo
## 10  AAK95579      H. sapiens SHAP-A hShroom4b       Homo
## 11  ABA81834 D. melanogaster Shroom  dmShroom Drosophila
## 12  EAA12598      A. gambiae Shroom  agShroom   mosquito
## 13 XP_392427    A. mellifera Shroom  amShroom        bee
## 14 XP_783573   S. purpuratus Shroom  spShroom sea urchin

Aligning multiple sequences

The $ allows to access the specific column of the table and get the values that are in it.

shroom_table$accession
##  [1] "CAA78718"  "NP_597713" "CAA58534"  "ABD19518"  "AAF13269"  "AAF13270" 
##  [7] "NP_065910" "ABD59319"  "NP_065768" "AAK95579"  "ABA81834"  "EAA12598" 
## [13] "XP_392427" "XP_783573"

This function is putting all fourteen sequences that we loaded up from the table into one long object.

# add necessary function
shrooms <- rentrez::entrez_fetch(db = "protein", 
                          id = shroom_table$accession, 
                          rettype = "fasta")

is(shrooms)
##  [1] "character"               "vector"                 
##  [3] "data.frameRowLabels"     "SuperClassMethod"       
##  [5] "character_OR_connection" "character_OR_NULL"      
##  [7] "atomic"                  "EnumerationValue"       
##  [9] "vector_OR_Vector"        "vector_OR_factor"
nchar(shrooms)
## [1] 22252

This function is taking the output from the last chunk and organizing it in a better way by having each sequence be printed chunk by chunk with a new line between them.

cat(shrooms)

This is taking the accession numbers from the table and outputting the sequence linked to them in a fasta file. It is much more condensed than the previous chunks.

shrooms_list <- compbio4all::entrez_fetch_list(db = "protein", 
                          id = shroom_table$accession, 
                          rettype = "fasta")

is(shrooms_list)
## [1] "list"             "vector"           "list_OR_List"     "vector_OR_Vector"
## [5] "vector_OR_factor"
length(shrooms_list)
## [1] 14
nchar(shrooms_list)
##  CAA78718 NP_597713  CAA58534  ABD19518  AAF13269  AAF13270 NP_065910  ABD59319 
##      1486       915      1673      1543      2083      1895      2070      1864 
## NP_065768  AAK95579  ABA81834  EAA12598 XP_392427 XP_783573 
##      1560       778      1647       750      2230      1758
#vectorization

This is simply printing out the length of the last code chunk, and it is 14 because the list utilized the accession number, of which we had 14.

length(shrooms_list)
## [1] 14

This is looping through the list we made and cleaning up every item using the fasta cleaner function.

for(i in 1:length(shrooms_list)){
  shrooms_list[[i]] <- fasta_cleaner(shrooms_list[[i]], parse = F)
}

This is getting the accession numbers and using them as labels for the sequences we got.

# Setting the vector's contents
shrooms_vector <- rep(NA, length(shrooms_list))

# Incorporating the for loop
for(i in 1:length(shrooms_vector)){
  shrooms_vector[i] <- shrooms_list[[i]]
}

#  Naming the vector
names(shrooms_vector) <- names(shrooms_list)

This is the last little bit of cleaning we have to do with this particular data.

# add necessary function
shrooms_vector_ss <- Biostrings::AAStringSet(shrooms_vector)

MSA

Readings will be assigned to explain what MSAs are. This section will go through and carry out MSAs, which are multiple sequence allignments. They will take multiple sequences at one and stack them on top of one another, while also making sure they are lined up the best they can be,

Building an XXXXXXXX (MSA)

This chunk is assigning a multiple sequence alignment between the 14 sequences to an object

# add necessary function
library(msa)
shrooms_align <- msa(shrooms_vector_ss,
                     method = "ClustalW")
## use default substitution matrix

Viewing an MSA

This section will look at the MSA in greater detail by actually having an output of the aligned sequences on display

Viewing an MSA in R

The output being shown here is the multiple sequence alignment between the 14 sequences.

shrooms_align
## CLUSTAL 2.1  
## 
## Call:
##    msa(shrooms_vector_ss, method = "ClustalW")
## 
## MsaAAMultipleAlignment with 14 rows and 2252 columns
##      aln                                                   names
##  [1] -------------------------...------------------------- NP_065768
##  [2] -------------------------...------------------------- AAK95579
##  [3] -------------------------...SVFGGVFPTLTSPL----------- AAF13269
##  [4] -------------------------...SVFGGVFPTLTSPL----------- AAF13270
##  [5] -------------------------...CTFSGIFPTLTSPL----------- NP_065910
##  [6] -------------------------...NKS--LPPPLTSSL----------- ABD59319
##  [7] -------------------------...------------------------- CAA58534
##  [8] -------------------------...------------------------- ABD19518
##  [9] -------------------------...LT----------------------- NP_597713
## [10] -------------------------...------------------------- CAA78718
## [11] -------------------------...------------------------- EAA12598
## [12] -------------------------...------------------------- ABA81834
## [13] MTELQPSPPGYRVQDEAPGPPSCPP...------------------------- XP_392427
## [14] -------------------------...AATSSSSNGIGGPEQLNSNATSSYC XP_783573
##  Con -------------------------...------------------------- Consensus

Here we are prepping the data for a better alignment

# WHAT IS THE LINE BELOW DOING? (its tricky - do your best)
##changing the class of the MSA from the previous chunk
class(shrooms_align) <- "AAMultipleAlignment"

# WHAT IS THE LINE BELOW DOING? This is simpler
##Converting the multiple sequence alignment to seqinr alignment
shrooms_align_seqinr <- msaConvert(shrooms_align, type = "seqinr::alignment")

This is displaying a full alignment of the sequences. It is very long and blunt.

print_msa(alignment = shrooms_align_seqinr, 
          chunksize = 60)

Displaying an MSA XXXXXXXX

This is printing the same thing out from the previous chunk but in a cleaner and more concise way. We are also specifying where exactly we want to start and stop the alignment.

## add necessary function
library(ggmsa)
## Registered S3 methods overwritten by 'ggalt':
##   method                  from   
##   grid.draw.absoluteGrob  ggplot2
##   grobHeight.absoluteGrob ggplot2
##   grobWidth.absoluteGrob  ggplot2
##   grobX.absoluteGrob      ggplot2
##   grobY.absoluteGrob      ggplot2
ggmsa::ggmsa(shrooms_align,   # shrooms_align, NOT shrooms_align_seqinr
      start = 2000, 
      end = 2100) 

Saving an MSA as PDF

This command is taking the output from the last chunk, which is the colorful MSA, and trying to convert it into a pdf for us to save.

Add the package the function is coming from using :: notation This may not work for everyone. If its not working you can comment it out.

'''
msaPrettyPrint(shrooms_align,             # alignment
               file = "shroom_msa.pdf",   # file name
               y=c(2000, 2100),           # range
               askForOverwrite=FALSE)
               '''

Getting the working directory to save the file and tell us where it is

getwd()
## [1] "C:/Users/varun/Downloads"
list.files()
##   [1] "_23-MSA-walkthrough-shroom-code_only--1-.html"                                                       
##   [2] "_23-MSA-walkthrough-shroom-code_only (1).Rmd"                                                        
##   [3] "_23-MSA-walkthrough-shroom-code_only.Rmd"                                                            
##   [4] "_fasta_cleaner.R"                                                                                    
##   [5] "~$1-HWCover1to2 (1).docx"                                                                            
##   [6] "~$aracteristics of Living Things.doc"                                                                
##   [7] "~$aracteristics_of_Living_Things (1).doc"                                                            
##   [8] "~$esentation planning DWS sp21_JR.docx"                                                              
##   [9] "~$exual_reproduction_packet.doc"                                                                     
##  [10] "~WRL1693.tmp"                                                                                        
##  [11] "0110 F20  Recitation Worksheet 2 Send (1).pdf"                                                       
##  [12] "0110 F20  Recitation Worksheet 2 Send.pdf"                                                           
##  [13] "0110 F20 420 PM Syllabus Updated with Canvas Compliance.pdf"                                         
##  [14] "0110 F20 Outline of Possible Final Exam Material.pdf"                                                
##  [15] "0110 F20 Recitation Skills Inventory for Students Send.pdf"                                          
##  [16] "0110 F20 Recitation Worksheet 1 For Students (1).pdf"                                                
##  [17] "0110 F20 Recitation Worksheet 1 For Students (2).pdf"                                                
##  [18] "0110 F20 Recitation Worksheet 1 For Students.pdf"                                                    
##  [19] "0110 FP20 OpenStax Chapter 4 Notes for Students to Use.pdf"                                          
##  [20] "05_Lecture_Presentation (1).pptx"                                                                    
##  [21] "05_Lecture_Presentation.pptx"                                                                        
##  [22] "1 0110 F20 Open Stax Chapter 1 Objectives.pdf"                                                       
##  [23] "10slactaseenzymelab (1).doc"                                                                         
##  [24] "10slactaseenzymelab (2).doc"                                                                         
##  [25] "10slactaseenzymelab.doc"                                                                             
##  [26] "10th Grade First Half Transcript.pdf"                                                                
##  [27] "1128551.pdf"                                                                                         
##  [28] "1257030.pdf"                                                                                         
##  [29] "1st Quarter - Sundar, Varun (1).pdf"                                                                 
##  [30] "1st Quarter - Sundar, Varun.pdf"                                                                     
##  [31] "2-13-21 Transcript.pdf"                                                                              
##  [32] "2014-2015_A1_Biological_Principles_Classroom_Quiz.pdf"                                               
##  [33] "2014-2015_A2_Chemical_Basis_of_Life_Classroom_Quiz.pdf"                                              
##  [34] "2014-2015_A3_Bioenergetics_Classroom_Quiz.pdf"                                                       
##  [35] "2014-2015_A4_Homeostasis_and_Cell_Transport.pdf"                                                     
##  [36] "2018-19.NBA.Roster (1).json"                                                                         
##  [37] "2018-19.NBA.Roster.json"                                                                             
##  [38] "2nd Quarter - Sundar, Varun.pdf"                                                                     
##  [39] "3.1_Practice_A.pdf"                                                                                  
##  [40] "5 Significant Digits and Measurement-S.pdf"                                                          
##  [41] "5saveyourears (1).dcr"                                                                               
##  [42] "5saveyourears.dcr"                                                                                   
##  [43] "9-19-16.doc.docx"                                                                                    
##  [44] "9-21-16_ATP_English.docx"                                                                            
##  [45] "9_Restriction Enzyme Analysis of DNA.docx"                                                           
##  [46] "a world not neatly divided.pps"                                                                      
##  [47] "AA and Codon.pdf"                                                                                    
##  [48] "ABC_CLIO_Solutions_-_Topic_Center_Treaty_of_Nanjing_1842.pdf"                                        
##  [49] "ABLIST21 (1).pdf"                                                                                    
##  [50] "ABLIST21.pdf"                                                                                        
##  [51] "ACT february 2018.pdf"                                                                               
##  [52] "Act_II_Questions2018.doc"                                                                            
##  [53] "Act_II_scene_i_quotes.docx"                                                                          
##  [54] "Act_III_scene_i_.docx"                                                                               
##  [55] "Act_III_scene_ii.doc"                                                                                
##  [56] "Act_III_scene_ii_Quotes.doc"                                                                         
##  [57] "activitymore-2F749C66-400F-4F04-8666-EE8A943D7516.png"                                               
##  [58] "activitymore-DF8C0B84-F212-4B58-8828-697CB4F05B6A.png"                                               
##  [59] "Addiction_  Is it a Choice or a Disease_.pdf"                                                        
##  [60] "amtrak ticket 3-24.pdf"                                                                              
##  [61] "an_R_script_file 9-2.R"                                                                              
##  [62] "an_R_script_file.R"                                                                                  
##  [63] "Anatomy Terms.pdf"                                                                                   
##  [64] "Anesthesiologist.pdf"                                                                                
##  [65] "Angelou-_Champion_of_the_World.doc"                                                                  
##  [66] "Angelou_Freewrite.doc"                                                                               
##  [67] "AP American History VIDEO PROJECT 2015.doc.docx"                                                     
##  [68] "AP Bio Research Paper Eshan and Varun.docx"                                                          
##  [69] "AP Euro Ch24 Outline.pdf"                                                                            
##  [70] "AP Euro Chp 25 Outline.pdf"                                                                          
##  [71] "AP_Update-_PP_RP_NH.doc"                                                                             
##  [72] "Archetypes.docx"                                                                                     
##  [73] "Argument_and_Persuasion_Notes.doc"                                                                   
##  [74] "Asexual_reproduction_packet.doc"                                                                     
##  [75] "ATP_Thursday_September_8_2016 (1).gdoc"                                                              
##  [76] "ATP_Thursday_September_8_2016 (2).gdoc"                                                              
##  [77] "ATP_Thursday_September_8_2016 (3).gdoc"                                                              
##  [78] "ATP_Thursday_September_8_2016.gdoc"                                                                  
##  [79] "Audience Analysis assignment (1).docx"                                                               
##  [80] "Audience Analysis assignment.docx"                                                                   
##  [81] "Audience Insights (1).docx"                                                                          
##  [82] "Audience Insights (2).docx"                                                                          
##  [83] "Audience Insights (3).docx"                                                                          
##  [84] "Audience Insights Informative Speech.docx"                                                           
##  [85] "Audience Insights sheet Visual aid_Curtis.docx"                                                      
##  [86] "Audience Insights sheet_Informative_Ivan.docx"                                                       
##  [87] "Audience Insights sheet_Informative_Varun.docx"                                                      
##  [88] "Audience Insights.docx"                                                                              
##  [89] "AudienceInsightsVarun.docx"                                                                          
##  [90] "Barry-Batting_Clean-Up...doc"                                                                        
##  [91] "BasketBall-GM-Rosters-2019.1.6 (1).zip"                                                              
##  [92] "BasketBall-GM-Rosters-2019.1.6.zip"                                                                  
##  [93] "big sam lab.pdf"                                                                                     
##  [94] "Bio EC.pdf"                                                                                          
##  [95] "bio lab duckweed flow chart.pdf"                                                                     
##  [96] "bio lec 2-11"                                                                                        
##  [97] "Bio Recitation 8 Work.xlsx"                                                                          
##  [98] "Bio_I_Research_Project_Introduction (1).pptx"                                                        
##  [99] "Bio_I_Research_Project_Introduction (2).pptx"                                                        
## [100] "Bio_I_Research_Project_Introduction.pptx"                                                            
## [101] "Bioethical Toolbox.pdf"                                                                              
## [102] "BioH_Zika_Inference_and_Evidence (1).docx"                                                           
## [103] "BioH_Zika_Inference_and_Evidence.docx"                                                               
## [104] "BiologyKeystonePracticeKEY (1).docx"                                                                 
## [105] "BiologyKeystonePracticeKEY.docx"                                                                     
## [106] "Biopsych Course Schedule.pdf"                                                                        
## [107] "biopsych jeopardy.pdf"                                                                               
## [108] "Biopsychology by John P.J. Pinel Steven J. Barnes (z-lib.org).pdf"                                   
## [109] "BIOSC 0150 (2211) - Office Hours 2 - Sheet1.pdf"                                                     
## [110] "BIOSC 0150 (2211) - Quiz Wrapper.docx"                                                               
## [111] "BIOSC 0150 (2211) - Syllabus_FINAL.pdf"                                                              
## [112] "BIOSC 0150 Grade Calculator (final).xlsx"                                                            
## [113] "BIOSC 0150 Module 1_ Biomolecules.apkg"                                                              
## [114] "blog edits final entry.docx"                                                                         
## [115] "Body Fat.xlsx"                                                                                       
## [116] "BP ExtraCredit Hunger F2020.doc"                                                                     
## [117] "BP ICE Addiction Choice or Disease F2020.doc"                                                        
## [118] "BP ICE Orexin Sleep F2020.doc"                                                                       
## [119] "BP NS Structure F2020 POST.pdf"                                                                      
## [120] "BP Syllabus F2020 - Updated 9.16.2020.pdf"                                                           
## [121] "BP Syllabus F2020.pdf"                                                                               
## [122] "brønsted-lowry-acids-and-bases-14.pdf"                                                               
## [123] "Buckley-_Why_Dont_We_Complain.doc"                                                                   
## [124] "buster.jpg"                                                                                          
## [125] "busterrr.jpg"                                                                                        
## [126] "C-C_Journal.doc"                                                                                     
## [127] "c0110_expt1_online (1).pdf"                                                                          
## [128] "c0110_expt1_online.pdf"                                                                              
## [129] "c0110_expt11_online_fillable_pdf.pdf"                                                                
## [130] "c0110_expt12_online_fillable_pdf.pdf"                                                                
## [131] "c0110_expt2_online (1).pdf"                                                                          
## [132] "c0110_expt2_online.pdf"                                                                              
## [133] "c0110_expt3_online.pdf"                                                                              
## [134] "c0110_expt4_online.pdf"                                                                              
## [135] "c0110_expt5_online_fillable.pdf"                                                                     
## [136] "c0110_expt6_online_fillable.pdf"                                                                     
## [137] "c0110_expt7_online.pdf"                                                                              
## [138] "c0110_expt8_online_fillable_pdf.pdf"                                                                 
## [139] "c0110_expt9_online_fillable_pdf.pdf"                                                                 
## [140] "c0120_expt10_online_fillable.pdf"                                                                    
## [141] "c0120_expt11_online_fillable_PDF.pdf"                                                                
## [142] "c0120_expt11_online_fillable_PDF_(1) (1) (1)[3115].pdf"                                              
## [143] "c0120_expt12_online_fillable.pdf"                                                                    
## [144] "c0120_expt13_online_fillablepdf.pdf"                                                                 
## [145] "c0120_expt3_online_fillable.pdf"                                                                     
## [146] "c0120_expt4_online_fillable.pdf"                                                                     
## [147] "c0120_expt4_spectra.xlsx"                                                                            
## [148] "c0120_expt4_varunsundar.pdf"                                                                         
## [149] "c0120_expt6_online_fillable (1).pdf"                                                                 
## [150] "c0120_expt6_online_fillable (2).pdf"                                                                 
## [151] "c0120_expt6_online_fillable.pdf"                                                                     
## [152] "c0120_expt7_online_fillable.pdf"                                                                     
## [153] "c0120_expt7_varunsundar.pdf"                                                                         
## [154] "c0120_expt8_online_fillable.pdf"                                                                     
## [155] "c0120_expt9_online_fillable.pdf"                                                                     
## [156] "Caesar_Act_I.doc"                                                                                    
## [157] "calculate your grade (1).xlsx"                                                                       
## [158] "calculate your grade.xlsx"                                                                           
## [159] "calendar.ics"                                                                                        
## [160] "Carbs_Against_Cardio_Article.pdf"                                                                    
## [161] "Career+Unit+1+Assessment+-+Varun+Sundar.docx"                                                        
## [162] "Castaway_Essay.doc"                                                                                  
## [163] "CBT Exam Authorization ATT.pdf"                                                                      
## [164] "Cell Division Mitosis Revised (1).pptx"                                                              
## [165] "Cell Division Mitosis Revised (2).pptx"                                                              
## [166] "Cell Division Mitosis Revised.pptx"                                                                  
## [167] "Ceremonial Speech.pdf"                                                                               
## [168] "CFM application-May 2020.doc"                                                                        
## [169] "Ch._48-49_Nervous_System_for_AP_Test (1).ppt"                                                        
## [170] "Ch._48-49_Nervous_System_for_AP_Test (2).ppt"                                                        
## [171] "Ch._48-49_Nervous_System_for_AP_Test.ppt"                                                            
## [172] "Chan paper.pdf"                                                                                      
## [173] "Chapter 10.zip"                                                                                      
## [174] "Chapter_1_solutions_key.pdf"                                                                         
## [175] "Chapter_11_new.doc"                                                                                  
## [176] "Chapter_12_new.doc"                                                                                  
## [177] "Chapter_2_Fill-ins_Basic_Chem (1).doc"                                                               
## [178] "Chapter_2_Fill-ins_Basic_Chem (2).doc"                                                               
## [179] "Chapter_2_Fill-ins_Basic_Chem.doc"                                                                   
## [180] "Chapter_2_solutions_key.pdf"                                                                         
## [181] "Chapter_3_HW_Solutions.pdf"                                                                          
## [182] "Chapter_3_outline (1).doc"                                                                           
## [183] "Chapter_3_outline (2).doc"                                                                           
## [184] "Chapter_3_outline.doc"                                                                               
## [185] "Chapter_4_HW_Solutions.pdf"                                                                          
## [186] "Chapter_5_outline.doc"                                                                               
## [187] "Chapter_8_new.doc"                                                                                   
## [188] "character_archetypes__1_.ppt"                                                                        
## [189] "Characteristics of Living Things.doc"                                                                
## [190] "Characteristics_of_Living_Things (1).doc"                                                            
## [191] "Characteristics_of_Living_Things.doc"                                                                
## [192] "Characterization_and_POV.doc"                                                                        
## [193] "Chem 310 Fall-2221 MSWORD (1).docx"                                                                  
## [194] "chem hw week 13 to 14.pdf"                                                                           
## [195] "chem lab 2[2603].pdf"                                                                                
## [196] "Chem Week 2 for 3 HW[2567].pdf"                                                                      
## [197] "Chinese_Civil_War_FINAL.pptx"                                                                        
## [198] "ChromeSetup.exe"                                                                                     
## [199] "Cisco_WebEx_Add-On.exe"                                                                              
## [200] "Civil War Essay Juneteenth.docx"                                                                     
## [201] "Civil War Essay Juneteenth.pdf"                                                                      
## [202] "Civil+War+turning+points.docx"                                                                       
## [203] "college+goals+naviance.pdf"                                                                          
## [204] "Common App Final Essay.pdf"                                                                          
## [205] "Common+Application+Practice+-+Career+Dev.docx"                                                       
## [206] "Community Experiment Slides.pptx"                                                                    
## [207] "Concept Mapping the Nervous System - Varun Sundar.pdf"                                               
## [208] "Concept Mapping the Nervous System Worksheet - ICE BP F2020 (1).doc"                                 
## [209] "Concept Mapping the Nervous System Worksheet - ICE BP F2020 (2).doc"                                 
## [210] "Concept Mapping the Nervous System Worksheet - ICE BP F2020 (3).doc"                                 
## [211] "Concept Mapping the Nervous System Worksheet - ICE BP F2020.doc"                                     
## [212] "Confucianism_and_Daoism.pdf"                                                                         
## [213] "consent Lead . Shock Trauma.pdf"                                                                     
## [214] "coriolis effect lab analysis questions.docx"                                                         
## [215] "Coriolis_Analysis_Questions.pdf"                                                                     
## [216] "Country and Classic Blues.pdf"                                                                       
## [217] "Course Data.xlsx"                                                                                    
## [218] "Covid-19 Essay_Varun Sundar.pdf"                                                                     
## [219] "covid-19_SOP.pdf"                                                                                    
## [220] "Creative_Cloud_Set-Up.exe"                                                                           
## [221] "CS0011"                                                                                              
## [222] "CS0011_Project1_Lab1-1.pdf"                                                                          
## [223] "CS0011_Project1_Lab3-1 (1).pdf"                                                                      
## [224] "CS0011_Project1_Lab3-1 (2).pdf"                                                                      
## [225] "CS0011_Project1_Lab3-1.pdf"                                                                          
## [226] "CS0011_Project1_Lab3-1_2.pdf"                                                                        
## [227] "CS0011_Project3-1.pdf"                                                                               
## [228] "Curtis Audience Insights.docx"                                                                       
## [229] "Curtis Visual Aid Speech Insights.docx"                                                              
## [230] "Daffy_Duck.svg.png"                                                                                  
## [231] "daphnia graph.xlsx"                                                                                  
## [232] "Daphnia Slides Day 1.pptx"                                                                           
## [233] "Daphnia_experimental_set_up_DW_Sp21-JR (1).pptx"                                                     
## [234] "Daphnia_experimental_set_up_DW_Sp21-JR.pptx"                                                         
## [235] "Daren_S._Starnes__Josh_Tabor_-_The_Practice_of_Statistics-W._H._Freeman_(2014).PDF"                  
## [236] "Day_3_China_9_30.docx"                                                                               
## [237] "DBQ_Info_condensed.doc"                                                                              
## [238] "desktop.ini"                                                                                         
## [239] "desmos-graph.png"                                                                                    
## [240] "Diet Analysis.docx"                                                                                  
## [241] "DiscordSetup (1).exe"                                                                                
## [242] "DiscordSetup (2).exe"                                                                                
## [243] "DiscordSetup.exe"                                                                                    
## [244] "DNA_and_Protein_ppt (1).ppt"                                                                         
## [245] "DNA_and_Protein_ppt (2).ppt"                                                                         
## [246] "DNA_and_Protein_ppt.ppt"                                                                             
## [247] "Documents - Shortcut.lnk"                                                                            
## [248] "Downloaded Songs"                                                                                    
## [249] "DP PROJECT STATUS IT TEAM 20171221.pptx"                                                             
## [250] "Drexel Med Essay.pdf"                                                                                
## [251] "driveforoffice.exe"                                                                                  
## [252] "ds_blog_edits_post.docx"                                                                             
## [253] "Duckweed Flow Chart Varun Sundar.pptx"                                                               
## [254] "Duckweed Survivor"                                                                                   
## [255] "duckweed survivor blog entry 1 (1).docx"                                                             
## [256] "duckweed survivor blog entry 1.docx"                                                                 
## [257] "Duckweed Survivor Presentation.pptx"                                                                 
## [258] "E-mail What Not to Write.pdf"                                                                        
## [259] "Early Childhood Progress Report Template Fall 2016 (1).pub"                                          
## [260] "Early Childhood Progress Report Template Fall 2016.pub"                                              
## [261] "East_Asia_Geography_2015_1.pptx"                                                                     
## [262] "Ecology_Lesson.ppt"                                                                                  
## [263] "epdf.tips_white-teeth-a-novel.epub"                                                                  
## [264] "EpicInstaller-7.0.0-fortnite-510c0856c7774c868abb5317698e771d (1).msi"                               
## [265] "EpicInstaller-7.0.0-fortnite-510c0856c7774c868abb5317698e771d.msi"                                   
## [266] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (1).msi"                               
## [267] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (2).msi"                               
## [268] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (3).msi"                               
## [269] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (4).msi"                               
## [270] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (5).msi"                               
## [271] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (6).msi"                               
## [272] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (7).msi"                               
## [273] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f (8).msi"                               
## [274] "EpicInstaller-7.5.0-fortnite-73551ef11b0b416c899371853c6e1f6f.msi"                                   
## [275] "evaluation and reflection in class.docx (1).docx"                                                    
## [276] "evaluation and reflection in class.docx (2).docx"                                                    
## [277] "evaluation and reflection in class.docx.docx"                                                        
## [278] "Evolution Test 2.doc"                                                                                
## [279] "Evolution_Fossils.ppt"                                                                               
## [280] "examples (1).doc"                                                                                    
## [281] "examples.doc"                                                                                        
## [282] "Excel file.xlsx"                                                                                     
## [283] "Experiment 12.pdf"                                                                                   
## [284] "Experiment 3.pdf"                                                                                    
## [285] "experiment 9.pdf"                                                                                    
## [286] "Expt #1 Observing and Recording Properties_VarunSundar (1).pdf"                                      
## [287] "Expt #1 Observing and Recording Properties_VarunSundar.pdf"                                          
## [288] "Expt #2 Scientific Measurements_VarunSundar (1).pdf"                                                 
## [289] "Expt #2 Scientific Measurements_VarunSundar.pdf"                                                     
## [290] "Expt #3 Determining the Formula of a Hydrate_VarunSundar.pdf"                                        
## [291] "expt #6 chemical metallurgy_VarunSundar.pdf"                                                         
## [292] "Expt 10.pdf"                                                                                         
## [293] "Expt 11.pdf"                                                                                         
## [294] "Expt 12.pdf"                                                                                         
## [295] "Expt 5.pdf"                                                                                          
## [296] "Expt 7.pdf"                                                                                          
## [297] "Expt 8.pdf"                                                                                          
## [298] "Expt. 4.pdf"                                                                                         
## [299] "Expt. 8.pdf"                                                                                         
## [300] "eyepigmentlabsp2007.doc"                                                                             
## [301] "FatSecret setup directions and login information.doc"                                                
## [302] "Figure 5.pptx"                                                                                       
## [303] "Final Assignment S21 worksheet.docx"                                                                 
## [304] "fish diet-1.xlsx"                                                                                    
## [305] "Fitzgerald_Notes_student.doc"                                                                        
## [306] "ForceWS_-_No_Friction-Solutions (1).pdf"                                                             
## [307] "ForceWS_-_No_Friction-Solutions.pdf"                                                                 
## [308] "ForceWS_-_No_Friction.pdf"                                                                           
## [309] "Francais_4_la_meteo_journalisme (1).docx"                                                            
## [310] "Francais_4_la_meteo_journalisme (2).docx"                                                            
## [311] "Francais_4_la_meteo_journalisme.docx"                                                                
## [312] "Frank Audience Insights.docx"                                                                        
## [313] "Frank Visual Aid Speech Insights.docx"                                                               
## [314] "functions.py"                                                                                        
## [315] "Future Directions Homework DW Sp21.pptx"                                                             
## [316] "Future Directions Slide (1).pptx"                                                                    
## [317] "Future Directions Slide.pptx"                                                                        
## [318] "ga_nks3importance.doc"                                                                               
## [319] "Georgetown Summer Essay.docx"                                                                        
## [320] "GPA-CALCULATOR.xls"                                                                                  
## [321] "Greatness of George Washington.pdf"                                                                  
## [322] "harrison_questions_5_4.doc"                                                                          
## [323] "harrison_quotes_4.doc"                                                                               
## [324] "Helbig - Global Hip Hop Syllabus.doc"                                                                
## [325] "hello world.py"                                                                                      
## [326] "Hiroshima_Docs.pdf"                                                                                  
## [327] "HOJ practice q's"                                                                                    
## [328] "Homework 2 Template-1 (1).docx"                                                                      
## [329] "Homework 2 Template-1.docx"                                                                          
## [330] "Homework 2_STAT1000.pdf"                                                                             
## [331] "Homework due for Week 8 Pop Expt Slides part 2 JR 3-3-21.pptx"                                       
## [332] "How to Write a CCOT Essay.doc"                                                                       
## [333] "HW3_template.docx"                                                                                   
## [334] "HW4_template.docx"                                                                                   
## [335] "hwe-calculation-spreadsheet-.xlsx"                                                                   
## [336] "hwe-calculation-spreadsheet.xlsx"                                                                    
## [337] "Ideas for schools about bullying.docx"                                                               
## [338] "Immune_System_ppt (1).ppt"                                                                           
## [339] "Immune_System_ppt (2).ppt"                                                                           
## [340] "Immune_System_ppt (3).ppt"                                                                           
## [341] "Immune_System_ppt.ppt"                                                                               
## [342] "Imperialism_in_China_FINAL_up.pptx"                                                                  
## [343] "individual_notebook_population_spreadsheet_sp21 (1).xlsx"                                            
## [344] "individual_notebook_population_spreadsheet_sp21.xlsx"                                                
## [345] "Information sheet for studentt.docx"                                                                 
## [346] "InstallWizard101.exe"                                                                                
## [347] "Intro_thesis_citing_1_6.docx"                                                                        
## [348] "invite.pdf"                                                                                          
## [349] "iTunes6464Setup.exe"                                                                                 
## [350] "Ivan Audience Insights.docx"                                                                         
## [351] "Ivan Speech 3 - Peer Feedback.docx"                                                                  
## [352] "Ivan Visual Aid Speech Insights.docx"                                                                
## [353] "Je_ne_pourrais_jamais_vivre.docx"                                                                    
## [354] "Job Interview Questions - Interviewer Portion.docx"                                                  
## [355] "Job Interview Questions Public Speaking - Interviewee Portion.docx"                                  
## [356] "Job Interview Questions Public Speaking - Interviewer Portion.docx"                                  
## [357] "Job Interview Questions.docx"                                                                        
## [358] "Job Shadowing Presentation - Google Slides.mp4"                                                      
## [359] "Journal Club  DW Survivor JR.docx"                                                                   
## [360] "Journal Club 1 DW Survivor (1).docx"                                                                 
## [361] "Journal Club 1 DW Survivor Varun Sundar.docx"                                                        
## [362] "Journal Club 1 DW Survivor.docx"                                                                     
## [363] "Keystone_review_notes_packet (1).pdf"                                                                
## [364] "Keystone_review_notes_packet (2).pdf"                                                                
## [365] "Keystone_review_notes_packet (3).pdf"                                                                
## [366] "Keystone_review_notes_packet (4).pdf"                                                                
## [367] "Keystone_review_notes_packet (5).pdf"                                                                
## [368] "Keystone_review_notes_packet.pdf"                                                                    
## [369] "Keystone_Sample_Questions_for_Review_1 (1).pptx"                                                     
## [370] "Keystone_Sample_Questions_for_Review_1 (2).pptx"                                                     
## [371] "Keystone_Sample_Questions_for_Review_1 (3).pptx"                                                     
## [372] "Keystone_Sample_Questions_for_Review_1 (4).pptx"                                                     
## [373] "Keystone_Sample_Questions_for_Review_1.pptx"                                                         
## [374] "lab 10 electrochemistry.pdf"                                                                         
## [375] "Lab Meeting #1 Slides (1).pptx"                                                                      
## [376] "Lab Meeting #1 Slides (2).pptx"                                                                      
## [377] "Lab Meeting #1 Slides.pptx"                                                                          
## [378] "Lab Meeting #2 DW SP21 Mn.Cu JR-1.pptx"                                                              
## [379] "Lab Meeting #2 DW SP21 Mn.Cu JR.pptx"                                                                
## [380] "Lab Meeting 2 Daphnia Excel sheet JR-1.xlsx"                                                         
## [381] "Lab Meeting 2 Daphnia Excel sheet JR.xlsx"                                                           
## [382] "lab mtg slides turcotte_student JR.pptx"                                                             
## [383] "lab_-_painted_butterfly_lab_intro (1).ppt"                                                           
## [384] "lab_-_painted_butterfly_lab_intro.ppt"                                                               
## [385] "lab11[3139].pdf"                                                                                     
## [386] "Lesson+Plan.pdf"                                                                                     
## [387] "Life The Science of Biology by David E. Sadava (z-lib.org).pdf"                                      
## [388] "Lil Uzi Vert - Shoulda Never.mp3"                                                                    
## [389] "listening questions HOJ"                                                                             
## [390] "Lord_of_the_Flies_Review.doc"                                                                        
## [391] "Lord_of_the_Flies_Review.docx"                                                                       
## [392] "M Topics for Exam 1-updated -S21.docx"                                                               
## [393] "Ma Vie.docx"                                                                                         
## [394] "Macbeth-_Student.doc"                                                                                
## [395] "Manganese.pdf"                                                                                       
## [396] "Manganese.pptx"                                                                                      
## [397] "Manganese_SP.00011_VS.xlsx"                                                                          
## [398] "Manning-Vowell_Journal_1.doc"                                                                        
## [399] "map (1).exe"                                                                                         
## [400] "map.exe"                                                                                             
## [401] "Marbury_v_Madison_3-1.doc"                                                                           
## [402] "MBGuide (1).doc"                                                                                     
## [403] "MBGuide.doc"                                                                                         
## [404] "MedX_Lab_Constitution.docx"                                                                          
## [405] "meeting-98619768594.ics"                                                                             
## [406] "Mendel_and_genetics (1).pptx"                                                                        
## [407] "Mendel_and_genetics (2).pptx"                                                                        
## [408] "Mendel_and_genetics.pptx"                                                                            
## [409] "Microscopes_notes.docx"                                                                              
## [410] "midterm 2 honor code.pdf"                                                                            
## [411] "Midterm 2.pdf"                                                                                       
## [412] "Midterm Honor Code.pdf"                                                                              
## [413] "Midterm speech analysis - fred rogers.docx"                                                          
## [414] "Midterm speech analysis - john lewis.docx"                                                           
## [415] "Midterm speech analysis - priyanka chopra.docx"                                                      
## [416] "Midterm speech analysis S21.docx"                                                                    
## [417] "midtermstudyguide2017.docx.docx"                                                                     
## [418] "Minitab STAT 1000"                                                                                   
## [419] "Minitab.mpx"                                                                                         
## [420] "mitosis_remodel (1).ppt"                                                                             
## [421] "mitosis_remodel.ppt"                                                                                 
## [422] "Mitosis_Review_before_test.pdf"                                                                      
## [423] "Module1 InClass Activity - What is biopsychology (1).docx"                                           
## [424] "Module1 InClass Activity - What is biopsychology.docx"                                               
## [425] "molarvolumegaslab.doc"                                                                               
## [426] "Moral Theory.pdf"                                                                                    
## [427] "Most Common Medications.docx"                                                                        
## [428] "Mother_to_Son_11.docx"                                                                               
## [429] "MSA-walkthrough-assignment-part01.Rmd"                                                               
## [430] "MSA-walkthrough-assignment-part01_files"                                                             
## [431] "Mu-Editor-Win64-1.1.0b4.msi"                                                                         
## [432] "new doc 2021-03-31 16.57.40[3065].pdf"                                                               
## [433] "new doc 2021-04-14 16.58.21[3141].pdf"                                                               
## [434] "notes_on_rmarkdown.Rmd"                                                                              
## [435] "OfficeSetup.exe"                                                                                     
## [436] "OnVUE-3.64.59.exe"                                                                                   
## [437] "organic_chemistry_FIXED_2016.ppt"                                                                    
## [438] "p3-skeleton (1).py"                                                                                  
## [439] "p3-skeleton.py"                                                                                      
## [440] "Part_3.docx"                                                                                         
## [441] "PC_windows_version_sum_and_graphing_Excel_sp21.pptx"                                                 
## [442] "Period 6 Key Concept Outline.doc"                                                                    
## [443] "period_six_key_concept_framework_filled_in.docx"                                                     
## [444] "Pers.-Statement-Lesson-4.Looking-at-Sample-College-Essays-2.docx"                                    
## [445] "persuasive speech audience insights - curtis.docx"                                                   
## [446] "persuasive speech audience insights - frank.docx"                                                    
## [447] "persuasive speech audience insights - ivan.docx"                                                     
## [448] "persuasive speech audience insights - sydney.docx"                                                   
## [449] "persuasive speech audience insights - zach.docx"                                                     
## [450] "Persuasive Speech Outline.docx"                                                                      
## [451] "Persuasive Speech topic proposal (1).docx"                                                           
## [452] "Persuasive Speech topic proposal.docx"                                                               
## [453] "Persuasive_Org_Graphic.doc"                                                                          
## [454] "Peterson_s.pdf"                                                                                      
## [455] "photo_analysis_worksheet.pdf"                                                                        
## [456] "Physical and Chemical Properties Lab.docx"                                                           
## [457] "Pitt_Printing_Client_Win64_1930.exe"                                                                 
## [458] "Plant Blog Project - Entry 2 (1).docx"                                                               
## [459] "Plant Blog Project - Entry 2.docx"                                                                   
## [460] "Plant Blog Project - Entry 3 (1).docx"                                                               
## [461] "Plant Blog Project - Entry 3.docx"                                                                   
## [462] "png2pdf.pdf"                                                                                         
## [463] "Poe_Biography.doc"                                                                                   
## [464] "Poetry_Booklet.doc"                                                                                  
## [465] "Pollutant background research.docx"                                                                  
## [466] "Pollutant background research.pdf"                                                                   
## [467] "pollutant websearch.docx"                                                                            
## [468] "pond_site_analysis.pptx"                                                                             
## [469] "pond_site_analysis_template_to_fill_sp21.pptx"                                                       
## [470] "pop.jfif"                                                                                            
## [471] "popsmoke.jpg"                                                                                        
## [472] "Population Experiment Part 2 (1).pptx"                                                               
## [473] "Population Experiment Part 2.pptx"                                                                   
## [474] "Post Mao China Skeletal.docx"                                                                        
## [475] "Poster_Presentation_Criteria_for_Bacteria_Research.docx"                                             
## [476] "Practice Questions for Final Exam.docx"                                                              
## [477] "Practice_Mitosis_Regents_Questions.pdf"                                                              
## [478] "Practice_Reproduction_and_Cell_Division_Regents_Questions.pdf"                                       
## [479] "Precalc textbook.pdf"                                                                                
## [480] "PreCalcHFinalExam2017SG (1).docx"                                                                    
## [481] "PreCalcHFinalExam2017SG.docx"                                                                        
## [482] "presentation peer evaluation sp21_klw.docx"                                                          
## [483] "Presentation planning DWS sp21_JR.docx"                                                              
## [484] "Presentation Slide Assignment_VS (1).pptx"                                                           
## [485] "Presentation Slide Assignment_VS.pptx"                                                               
## [486] "presidental-debate-rhetorical-analysis.docx"                                                         
## [487] "presidential-debate-rhetoric-response.docx"                                                          
## [488] "PS 0500 Syllabus (Fall 2020_11_05 a.m (1).)"                                                         
## [489] "PS 0500 Syllabus (Fall 2020_11_05 a.m (2).)"                                                         
## [490] "PS 0500 Syllabus (Fall 2020_11_05 a.m (3).)"                                                         
## [491] "PS 0500 Syllabus (Fall 2020_11_05 a.m.)"                                                             
## [492] "PS0500 Topic 1_Change and Continuity (Abbrev) (1).pdf"                                               
## [493] "PS0500 Topic 1_Change and Continuity (Abbrev) (2).pdf"                                               
## [494] "PS0500 Topic 1_Change and Continuity (Abbrev).pdf"                                                   
## [495] "PSATStudentScoreReport_1522095554324.pdf"                                                            
## [496] "quiz 2.pdf"                                                                                          
## [497] "Quiz 4 Template.docx"                                                                                
## [498] "Quiz 5 stat.pdf"                                                                                     
## [499] "Quiz 5 Template.docx"                                                                                
## [500] "Quiz 6 Template.docx"                                                                                
## [501] "Quiz 6 Template.pdf"                                                                                 
## [502] "Quiz 8 - Varun Sundar.docx"                                                                          
## [503] "Quiz 8.docx"                                                                                         
## [504] "Quiz_1term_review_-_no_metric (1).doc"                                                               
## [505] "Quiz_1term_review_-_no_metric.doc"                                                                   
## [506] "Quiz3_Template.docx"                                                                                 
## [507] "qw6c42424492swh5.docx"                                                                               
## [508] "R-4.1.1-win.exe"                                                                                     
## [509] "Rec Sheet 5.docx"                                                                                    
## [510] "receipt_Chap 19 LEQ.pdf.pdf"                                                                         
## [511] "recitation 10 bio.xlsx"                                                                              
## [512] "recitation 7 bio.pdf"                                                                                
## [513] "Recitation Structure, Requirements, and Grading.docx (1).png"                                        
## [514] "Recitation Structure, Requirements, and Grading.docx (2).png"                                        
## [515] "Recitation Structure, Requirements, and Grading.docx.png"                                            
## [516] "Results Figures-Population Experiment (1).pptx"                                                      
## [517] "Results Figures-Population Experiment (2).pptx"                                                      
## [518] "Results Figures-Population Experiment (3).pptx"                                                      
## [519] "Results Figures-Population Experiment.pptx"                                                          
## [520] "Resume 2021.pdf"                                                                                     
## [521] "Resume.pdf"                                                                                          
## [522] "REVIEW_Art_History_SE (1).docx"                                                                      
## [523] "REVIEW_Art_History_SE (2).docx"                                                                      
## [524] "REVIEW_Art_History_SE (3).docx"                                                                      
## [525] "REVIEW_Art_History_SE.docx"                                                                          
## [526] "Revision_-_rubrique.docx"                                                                            
## [527] "Riddhi Audience Insights.docx"                                                                       
## [528] "Riddhi Visual Aid Speech Insights.docx"                                                              
## [529] "Role of Orexin in regulation of sleep mechanisms (1).pdf"                                            
## [530] "Role of Orexin in regulation of sleep mechanisms.pdf"                                                
## [531] "RStudio-1.4.1717.exe"                                                                                
## [532] "Rubric_for_your_research_project (1).docx"                                                           
## [533] "Rubric_for_your_research_project.docx"                                                               
## [534] "S&OP PROJECT STATUS_ IT TEAM_20171220.pptx"                                                          
## [535] "S21-doc cam Chap 14b.pdf"                                                                            
## [536] "S21-HWCover10to11.docx"                                                                              
## [537] "S21-HWCover11to12.docx"                                                                              
## [538] "S21-HWCover12to13.docx"                                                                              
## [539] "S21-HWCover13to14.docx"                                                                              
## [540] "S21-HWCover1to2 completed.docx"                                                                      
## [541] "S21-HWCover2to3.docx"                                                                                
## [542] "S21-HWCover3to4.docx"                                                                                
## [543] "S21-HWCover4to5.docx"                                                                                
## [544] "S21-HWCover5to6-1.docx"                                                                              
## [545] "S21-HWCover6to7.docx"                                                                                
## [546] "S21-HWCover7to8.docx"                                                                                
## [547] "S21-HWCover8to9.docx"                                                                                
## [548] "S21-HWCover9to10.docx"                                                                               
## [549] "S21-REC Week 2 A[2496].docx"                                                                         
## [550] "Sample Visual Aid Speech Outline 1.docx"                                                             
## [551] "Sample Visual Aid Speech Outline 1.pdf"                                                              
## [552] "SATStudentScoreReport_1522095457168.pdf"                                                             
## [553] "Scenario_Worksheet.doc"                                                                              
## [554] "Scholarly Literature Search_Duckweed Sp21_3.7.2021-3.docx"                                           
## [555] "Screen Shot 2020-08-19 at 11.07.59 AM.png"                                                           
## [556] "Screen Shot 2020-09-03 at 9.28.36 PM.png"                                                            
## [557] "screenshot_Broca'sArea.jpg"                                                                          
## [558] "screenshot_FrontalLobe.jpg"                                                                          
## [559] "screenshot_MedullaOblongata (1).jpg"                                                                 
## [560] "screenshot_MedullaOblongata.jpg"                                                                     
## [561] "screenshot_MotorCortex.jpg"                                                                          
## [562] "screenshot_Thalamus (1).jpg"                                                                         
## [563] "screenshot_Thalamus.jpg"                                                                             
## [564] "sd-calculator.xlsx"                                                                                  
## [565] "Sentence_Supplemental_Ex.doc"                                                                        
## [566] "Setup.X86.en-US_O365HomePremRetail_0f0ca4fa-d9fc-4ddc-bdb6-8d6fe99cfdfd_TX_PR_.exe"                  
## [567] "shroom_msa.tex"                                                                                      
## [568] "SHS-IMMUNIZATION-REQUIREMENTS-Form-APR2019[1384].pdf"                                                
## [569] "SHS_Authorization_for_Release_of_Med_Records_Form_060116 (1).pdf"                                    
## [570] "SHS_Authorization_for_Release_of_Med_Records_Form_060116.pdf"                                        
## [571] "Soil_Productivity_Lab_-_Student_Version.pdf"                                                         
## [572] "Speech Outline Elements.pdf"                                                                         
## [573] "Speech Outline Template (1) (1).pdf"                                                                 
## [574] "Speech Outline Template (1).pdf"                                                                     
## [575] "Speech Outline Template (2).pdf"                                                                     
## [576] "Speech Outline Template (3).pdf"                                                                     
## [577] "Speech Outline Template.pdf"                                                                         
## [578] "SpotifySetup.exe"                                                                                    
## [579] "SputnikEssentialQuestions.doc"                                                                       
## [580] "SRIP Application .pdf"                                                                               
## [581] "SRT.mp3"                                                                                             
## [582] "Standard_deviation_Answer_sheet (1).pdf"                                                             
## [583] "Standard_deviation_Answer_sheet.pdf"                                                                 
## [584] "stat"                                                                                                
## [585] "STAT 1000 Midterm Varun Sundar.pdf"                                                                  
## [586] "Stat 1000 Quiz 1.docx"                                                                               
## [587] "Stat 1000 Quiz 1.pdf"                                                                                
## [588] "Stat 1000 Quiz 4.docx"                                                                               
## [589] "Stat 1000 Quiz 4.pdf"                                                                                
## [590] "stat final.pdf"                                                                                      
## [591] "stat HW 1.docx"                                                                                      
## [592] "stat hw 1_VS.pdf"                                                                                    
## [593] "stat hw 6[3158].pdf"                                                                                 
## [594] "stat hw3.docx"                                                                                       
## [595] "stat hw3.pdf"                                                                                        
## [596] "stat midterm.pdf"                                                                                    
## [597] "stat quiz 2[2605].pdf"                                                                               
## [598] "stat quiz 3.pdf"                                                                                     
## [599] "STAT_1000___Sources_of_Data_II__Scientific_Studies(1).pdf"                                           
## [600] "STAT_1000__Confidence_Interval_for_Means(1).pdf"                                                     
## [601] "STAT_1000__Confidence_Interval_for_Proportions__notes_(1).pdf"                                       
## [602] "STAT_1000__Examining_Relationships_II___Regression(1).pdf"                                           
## [603] "STAT_1000__Examining_Relationships_III___Two_Way_Tables(1).pdf"                                      
## [604] "STAT_1000__Final_SP(1)[3188].pdf"                                                                    
## [605] "STAT_1000__Hypothesis_Testing__Introduction(2).pdf"                                                  
## [606] "STAT_1000__Hypothesis_Testing_for_Means_II(1).pdf"                                                   
## [607] "STAT_1000__Hypothesis_Testing_for_Proportions(3).pdf"                                                
## [608] "STAT_1000__Inference_for_categorical_variables___Chi_square_Test_of_Independence_.pdf"               
## [609] "STAT_1000__Inference_in_Regression_SP.pdf"                                                           
## [610] "STAT_1000__Midterm_2_SP_2021.pdf"                                                                    
## [611] "STAT_1000__More_on_Hypothesis_Testing_SP (2).pdf"                                                    
## [612] "STAT_1000__Probability(1).pdf"                                                                       
## [613] "STAT_1000__Random_Variables__Notes_(1).pdf"                                                          
## [614] "STAT_1000__Sampling_Distribution_for_Proportions(2).pdf"                                             
## [615] "STAT_1000__Sampling_Distributions(1).pdf"                                                            
## [616] "STAT_1000__Topic_1.pdf"                                                                              
## [617] "SteamSetup.exe"                                                                                      
## [618] "SteamSetup.exe.ce011yw.partial"                                                                      
## [619] "Steven A. Beebe_ Susan J. Beebe - A Concise Public Speaking Handbook (2017, Pearson) - libgen.li.pdf"
## [620] "Strand Terminology.jpg"                                                                              
## [621] "Student Registration Instructions - Pearson Revel (1).pdf"                                           
## [622] "Student Registration Instructions - Pearson Revel.pdf"                                               
## [623] "Sundar speech 1 grade (1).pdf"                                                                       
## [624] "Sundar speech 1 grade.pdf"                                                                           
## [625] "Sundar speech 3 grade.pdf"                                                                           
## [626] "Sundar speech 4 grade (1).pdf"                                                                       
## [627] "Sundar speech 4 grade.pdf"                                                                           
## [628] "Sundar Varun 202010152321290537.pdf"                                                                 
## [629] "Sundar Varun 202010152321290537[1546].pdf"                                                           
## [630] "Sundar Varun 202011081849210969[2060].pdf"                                                           
## [631] "Sundar, Varun.pdf"                                                                                   
## [632] "Supergrow_Scenario.docx"                                                                             
## [633] "SurfaceBook_Win10_16299_1805000_4.msi"                                                               
## [634] "Sydney Visual Aid Insights.docx"                                                                     
## [635] "Syllabus Morality and Medicine Fall 2021 (1).pdf"                                                    
## [636] "Syllabus Morality and Medicine Fall 2021.pdf"                                                        
## [637] "Tan _Fish Cheeks_ Freewrite.docx"                                                                    
## [638] "Teams_windows_x64.exe"                                                                               
## [639] "Teamwork semester evaluation sp21_klw.docx"                                                          
## [640] "Technology Preparation_Duckweed Survivor_klw1.13.21.docx"                                            
## [641] "The Awakening study guide (1).doc"                                                                   
## [642] "The Awakening study guide.doc"                                                                       
## [643] "The Jackbox Party Pack 2"                                                                            
## [644] "The Jackbox Party Pack 2.zip"                                                                        
## [645] "The Jackbox Party Pack 4"                                                                            
## [646] "The Jackbox Party Pack 4.zip"                                                                        
## [647] "The_Hollow_Men (1).docx"                                                                             
## [648] "The_Hollow_Men.docx"                                                                                 
## [649] "The_Possibility_of_Evil_Reflection_.docx"                                                            
## [650] "Thinglink (1).mp4"                                                                                   
## [651] "Thinglink.mp4"                                                                                       
## [652] "Topic_Selection_.docx"                                                                               
## [653] "Trauma Emergencies Worksheet.docx"                                                                   
## [654] "Travelers_Tales.pdf"                                                                                 
## [655] "TRM_Chpt_23.doc"                                                                                     
## [656] "TRM_Chpt_24.doc"                                                                                     
## [657] "TSL_Quote_Guide.doc"                                                                                 
## [658] "Tuesday Community Data Master File_day14_sp21.xlsx"                                                  
## [659] "Tuesday Community Data with graphs.xlsx"                                                             
## [660] "TV Hours-1.xlsx"                                                                                     
## [661] "Unit 08 LP06PS - Met Character and Reactivity v06.ppt"                                               
## [662] "Unit_2_-_THe_Living_World_.pptx"                                                                     
## [663] "UPS-logo.png"                                                                                        
## [664] "UTUavR3.docx"                                                                                        
## [665] "UTUavR5a.docx"                                                                                       
## [666] "vaccination record card.pdf"                                                                         
## [667] "varun covid vaccination card.pdf"                                                                    
## [668] "Varun Persuasive Audience .docx"                                                                     
## [669] "Varun Sundar Visual Aid Speech Outline.docx"                                                         
## [670] "Varun Sundar Visual Aid Speech Outline.pdf"                                                          
## [671] "Varun+Sundar+Unit+3-Module+1+Assessment+-+Budgeting.docx"                                            
## [672] "Vietnam.m4a"                                                                                         
## [673] "Visual Aid Speech Audience Insights Zach Kunning.docx"                                               
## [674] "Vocab_List_1 (1).doc"                                                                                
## [675] "Vocab_List_1 (2).doc"                                                                                
## [676] "Vocab_List_1.doc"                                                                                    
## [677] "VoiceChanger64(0.75).exe"                                                                            
## [678] "VoicemodSetup.exe"                                                                                   
## [679] "Vowell-_Shooting_Dad.doc"                                                                            
## [680] "w5ax42831555pkn6.docx"                                                                               
## [681] "Week 10 Recitation wksht"                                                                            
## [682] "Week 10 Recitation.pdf"                                                                              
## [683] "week 11-12 HW.pdf"                                                                                   
## [684] "Week 12 Recitation.docx"                                                                             
## [685] "Week 13.docx"                                                                                        
## [686] "week 13to14 hw.pdf"                                                                                  
## [687] "Week 14 Recitation.docx"                                                                             
## [688] "Week 2 Fallacies.pdf"                                                                                
## [689] "Week 3 to 4 HW (1).pdf"                                                                              
## [690] "Week 3 to 4 HW.pdf"                                                                                  
## [691] "Week 4 to 5 HW chem.pdf"                                                                             
## [692] "week 5 to 6 hw[2766].pdf"                                                                            
## [693] "week 6 for 7 hw.pdf"                                                                                 
## [694] "Week 6 Study Guide SV2.pdf"                                                                          
## [695] "Week 7 Study Guide SV.pdf"                                                                           
## [696] "week 7 to 8 HW.pdf"                                                                                  
## [697] "Week 8 Recitation worksheet.docx"                                                                    
## [698] "week 8 to 9 hw.pdf"                                                                                  
## [699] "week 9 to 10 hw.pdf"                                                                                 
## [700] "Weekly Time Management  Schedule.xlsx"                                                               
## [701] "Wenke-_Too_Much_Pressure.doc"                                                                        
## [702] "WhartonBio-notes.doc"                                                                                
## [703] "Whiteboard[2]-01.png"                                                                                
## [704] "Why do we sleep_ - Google Docs.pdf"                                                                  
## [705] "Why We Sleep - BP ICE F2020.docx"                                                                    
## [706] "Word File-28.docx"                                                                                   
## [707] "Word File-30.docx"                                                                                   
## [708] "worksheet week 4.docx"                                                                               
## [709] "Writing the LEQ.docx"                                                                                
## [710] "x9ga42424492nrlk.docx"                                                                               
## [711] "Zachary Audience Insights.docx"                                                                      
## [712] "Zoom_cm_ds_m+TP3T8RfzG0kVwSHTM8ODT8tvwGxrdMvuM3F@phLlb4Ku3JckZtRO_k1306000f03e25392_.exe"            
## [713] "zoom_Roe_Exm_review_2-1.mp4"