Use R programming to resolve this; can you please provide
details on the code?
A) Create a dataframe – comparativeGenomeSize with the following
vectors:
> organism<-c("Human","Mouse","Fruit Fly",
"Roundworm","Yeast")
>
genomeSizeBP<-c(3000000000,3000000000,135600000,97000000,12100000)
> estGeneCount<-c(30000,30000,13061,19099,6034)
B) Print the organism and estGeneCount for Human and
fruitfly.(1)
C) Add a column to this data frame calculating base pairs per
gene. To do this, write a function “genedensity” that takes as
arguments the genomesizeBP and estimatedGeneCount information, and
calculates from this the estimated bp per gene....