-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSelectWellData.R
More file actions
9 lines (7 loc) · 888 Bytes
/
SelectWellData.R
File metadata and controls
9 lines (7 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
#Create analysis Output File
#Mark Dane 1/2015
library(data.table)
wDT <- fread("AtwatersWell_v1.1.txt")
sDT <- wDT[wDT$CellLine %in% c("CAMA1","HCC1143","HCC1419","CAL51","SKBR3","JIMT1","Hs578T","SUM149PT","SUM159PT","MDAMB157","MDAMB231","ZR751","ZR75B","AU565","T47D","HCC38","HCC1806","MDAMB134VI", "600MPE", "MDAMB361"),]
sDT <- unique(sDT[,list(Barcode,Well,Plate,GeneSymbol,GeneAccession,GINumber,PoolCatalogNumber,CellLine,PlateID,Row,Column,MeanIntensityDAPI,MeanIntensityAlexa647,ElongationFactor,Perimeter,Area,WellCellCount,WellCellCountLoessNorm,TotalIntensityDAPI,DNA2NProportion,DNA4NProportion,DNA2NProportionLogit,DNA4NProportionLogit,EduPositiveProportion,EduPositiveProportionLogit,G0G1Proportion,SProportion,G2Proportion,WellCellCountNorm,EduPositiveProportionLogitNorm)])
write.table(sDT,file="AtwatersSelectedWell.txt",quote = FALSE,sep = "\t",row.names = FALSE)