Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added .RData
Binary file not shown.
57 changes: 57 additions & 0 deletions .Rhistory
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
a=(Abby,Britney,Cat,Diane,Evey)
a=Abby,Britney,Cat,Diane,Evey
a=1,2,3,4,5
a<-5
a=c("abby","britney","cat","diane","Evey")
a[3]
a[1,2]
a[1:2]
M=matrix(1;4,nrow=2,ncol=2)
M=matrix(1:4,nrow=2,ncol=2)
View(M)
a=list(a,M)
a=c("abby","britney","cat","diane","Evey")
b=list(a,M)
View(M)
b[[1]][4]
b[[1]][4:5]
b[[1]][4,5]
halfmin=function(series){
halfmin=min(series)/2
return(halfmin)
}
halfmin(c(3,2,1))
halfmin(c(3,2,1))
halfmin(c(3,2,1),3)
halfmin=function(series,divideby=2){
halfmin=min(series)/divideby
return(halfmin)
}
halfmin(c(3,2,1),3)
local=function(local){
output=local/global
return(output)
}
local(3)
local=function(local){
output=local/global
return(output)
}
global=3
local(3)
local(3)
local=function(local){
output=local/global
return(output)
}
global=2
local(3)
local=function(local){
output=locali/global
return(output)
}
global=2
local(3)
locali
setwd("C:/Users/raven/Desktop/biocomputing/GroupProject/Bioinformatics_Group_Project")
HitTable=read.table(file="HMMsearchHitTableFinal.txt",header = FALSE,stringsAsFactors = FALSE)
File renamed without changes.
File renamed without changes.
Binary file not shown.
File renamed without changes.
File renamed without changes.
21 changes: 21 additions & 0 deletions Project_File/PeerReviewComments.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
Protein alignments:

5 of our 6 protein motifs are the same. However, we see that you chose many species to work with, and not necessarily all of them are closely related to mice (as you can see from the TREE function on NCBI. This is just something to keep in mind

Good use of unix variables in file=$(echo $1)!

Protein search:

It seems unnecessary to use $(ls ../../../*.hmm), when just writing "ls../../../*.hmm" will give you that list. At this point in the for loop, you are not calling a variable yet. This applies to other steps in your work as well.

Nice use of script to get top hits! We just copied from the webpage table directly.

Graphics:

We couldn't find your .R file! Could you put it in?

It may also be helpful to include an actual picture of the graph exported into the file, like a .png file

Overall:

Nice breakdown and commenting of code! We really need to do the same!
File renamed without changes.
File renamed without changes.
440 changes: 440 additions & 0 deletions RNAseq/Control1protein.fasta

Large diffs are not rendered by default.

599 changes: 599 additions & 0 deletions RNAseq/Control2protein.fasta

Large diffs are not rendered by default.

1,367 changes: 1,367 additions & 0 deletions RNAseq/Obese1protein.fasta

Large diffs are not rendered by default.

1,319 changes: 1,319 additions & 0 deletions RNAseq/Obese2protein.fasta

Large diffs are not rendered by default.

Binary file added Results_File/.DS_Store
Binary file not shown.
164 changes: 164 additions & 0 deletions Results_File/Short_Answer_1/.Rhistory
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
a=(Abby,Britney,Cat,Diane,Evey)
a=Abby,Britney,Cat,Diane,Evey
a=1,2,3,4,5
a<-5
a=c("abby","britney","cat","diane","Evey")
a[3]
a[1,2]
a[1:2]
M=matrix(1;4,nrow=2,ncol=2)
M=matrix(1:4,nrow=2,ncol=2)
View(M)
a=list(a,M)
a=c("abby","britney","cat","diane","Evey")
b=list(a,M)
View(M)
b[[1]][4]
b[[1]][4:5]
b[[1]][4,5]
halfmin=function(series){
halfmin=min(series)/2
return(halfmin)
}
halfmin(c(3,2,1))
halfmin(c(3,2,1))
halfmin(c(3,2,1),3)
halfmin=function(series,divideby=2){
halfmin=min(series)/divideby
return(halfmin)
}
halfmin(c(3,2,1),3)
local=function(local){
output=local/global
return(output)
}
local(3)
local=function(local){
output=local/global
return(output)
}
global=3
local(3)
local(3)
local=function(local){
output=local/global
return(output)
}
global=2
local(3)
local=function(local){
output=locali/global
return(output)
}
global=2
local(3)
locali
setwd("C:/Users/raven/Desktop/biocomputing/GroupProject/Bioinformatics_Group_Project/Results_File/Short_Answer_1")
HitTable1_blastn=read.table(file="HitTable1_blastn.csv",header = FALSE,stringsAsFactors = FALSE)
View(HitTable1_blastn)
View(HitTable1_blastn)
HitTable1_dmb=read.table(file="HitTable1_dmb.csv",header=F,stringsAsFactors = F)
setwd("C:/Users/raven/Desktop/biocomputing/GroupProject/Bioinformatics_Group_Project/Results_File/Short_Answer_1")
HitTable1_blastn=read.table(file="HitTable1_blastn.csv",header = FALSE,stringsAsFactors = FALSE)
HitTable1_dmb=read.table(file="HitTable1_dmb.csv",header=F,stringsAsFactors = F)
HitTable1_count=0
for (i in 1:length(HitTable1_dmb$V1)) {
if (HitTable1_dmb[i,]==HitTable1_blastn[i,]) {
HitTable1_count=HitTable1_count+1
}
}
if (HitTable1_count==length(HitTable1_dmb$V1)) {print("Include")}
length(HitTable1_dmb$V1)
HitTable1_mb=read.table(file="HitTable1_mb.csv",header=F,stringsAsFactors = F)
HitTable1_count=0
for (i in 1:length(HitTable1_dmb$V1)) {
if (HitTable1_dmb[i,]==HitTable1_mb[i,]) {
HitTable1_count=HitTable1_count+1
}
}
if (HitTable1_count==length(HitTable1_dmb$V1)) {print("Include")}
rm(list=ls())
setwd("C:/Users/raven/Desktop/biocomputing/GroupProject/Bioinformatics_Group_Project/Results_File/Short_Answer_1")
HitTable1_blastn=read.table(file="HitTable1_blastn.csv",header = FALSE,stringsAsFactors = FALSE)
HitTable1_dmb=read.table(file="HitTable1_dmb.csv",header=F,stringsAsFactors = F)
HitTable1_mb=read.table(file="HitTable1_mb.csv",header=F,stringsAsFactors = F)
#See alignment between BLAST hits: dmb and blastn
HitTable1_count_dmb_blastn=0
for (i in 1:length(HitTable1_dmb$V1)) {
if (HitTable1_dmb[i,]==HitTable1_blastn[i,]) {
HitTable1_count_dmb_blastn=HitTable1_count_dmb_blastn+1
}
}
HitTable1_count_dmb_blastn
if (HitTable1_count_dmb_blastn==length(HitTable1_dmb$V1)) {print("Include")}
#See alignment between BLAST hits: dmb and mb
HitTable1_count_dmb_mb=0
for (i in 1:length(HitTable1_dmb$V1)) {
if (HitTable1_dmb[i,]==HitTable1_mb[i,]) {
HitTable1_count_dmb_mb=HitTable1_count_dmb_mb+1
}
}
HitTable1_count_dmb_mb
if (HitTable1_count_dmb_mb==length(HitTable1_dmb$V1)) {print("Include")}
HitTable1_count_mb_blastn=0
for (i in 1:length(HitTable1_mb$V1)) {
if (HitTable1_mb[i,]==HitTable1_blastn[i,]) {
HitTable1_count_mb_blsatn=HitTable1_count_mb_blastn+1
}
}
HitTable1_count_mb_blastn
if (HitTable1_count_mb_blastn==length(HitTable1_dmb$V1)) {print("Include")}
HitTable2_blastn=read.table(file="HitTable2_blastn.csv",header = FALSE,stringsAsFactors = FALSE)
HitTable2_dmb=read.table(file="HitTable2_dmb.csv",header=F,stringsAsFactors = F)
HitTable2_mb=read.table(file="HitTable2_mb.csv",header=F,stringsAsFactors = F)
#See alignment between BLAST hits: dmb and blastn
HitTable2_count_dmb_blastn=0
for (i in 1:length(HitTable2_dmb$V1)) {
if (HitTable2_dmb[i,]==HitTable2_blastn[i,]) {
HitTable2_count_dmb_blastn=HitTable2_count_dmb_blastn+1
}
}
HitTable2_count_dmb_blastn
if (HitTable2_count_dmb_blastn==length(HitTable2_dmb$V1)) {print("Include")}
#See alignment between BLAST hits: dmb and mb
HitTable2_count_dmb_mb=0
for (i in 1:length(HitTable2_dmb$V1)) {
if (HitTable2_dmb[i,]==HitTable2_mb[i,]) {
HitTable2_count_dmb_mb=HitTable2_count_dmb_mb+1
}
}
HitTable2_count_dmb_mb
if (HitTable2_count_dmb_mb==length(HitTable2_dmb$V1)) {print("Include")}
#See alignment between BLAST hits: mb and blastn
HitTable2_count_mb_blastn=0
for (i in 1:length(HitTable2_mb$V1)) {
if (HitTable2_mb[i,]==HitTable2_blastn[i,]) {
HitTable2_count_mb_blsatn=HitTable2_count_mb_blastn+1
}
}
HitTable2_count_mb_blastn
if (HitTable2_count_mb_blastn==length(HitTable2_dmb$V1)) {print("Include")}
HitTable1_count_dmb_blastn=0
for (i in 1:length(HitTable1_dmb$V1)) {
for (j in 1:length(HitTable1_blastn$V1)) {
if (HitTable1_dmb[i,]==HitTable1_blastn[j,]) {
HitTable1_count_dmb_blastn=HitTable1_count_dmb_blastn+1
}
}
HitTable1_count_dmb_blastn
for (i in 1:length(HitTable1_dmb$V1)) {
for (j in 1:length(HitTable1_blastn$V1)) {
if (HitTable1_dmb[i,]==HitTable1_blastn[j,]) {
HitTable1_count_dmb_blastn=HitTable1_count_dmb_blastn+1
}
}
}
HitTable1_count_dmb_blastn
for (i in 1:length(HitTable1_dmb$V1)) {
for (j in 1:length(HitTable1_blastn$V1)) {
if (HitTable1_dmb[i,]==HitTable1_blastn[j,]) {
HitTable1_count_dmb_blastn=HitTable1_count_dmb_blastn+1
}
}
}
HitTable1_count_dmb_blastn
Loading