-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
@startuml | ||
set namespaceSeparator none | ||
skinparam linetype polyline | ||
skinparam backgroundcolor transparent | ||
|
||
Entity "raw data && metadata" as RD {} | ||
|
||
Entity "data.table(s)" as DF {} | ||
|
||
Entity "SummarizedExperiment" as SE { | ||
metadata(se) | ||
rowData(se) | ||
colData(se) | ||
.. assays(se) .. | ||
+ **"RawTreated"** | ||
+ **"Controls"** | ||
} | ||
|
||
Entity "SummarizedExperiment" as SE2 { | ||
metadata(se) | ||
rowData(se) | ||
colData(se) | ||
.. assays(se) .. | ||
+ "RawTreated" | ||
+ "Controls" | ||
+ **"Normalized"** | ||
+ **"RefRelativeViability"** | ||
+ **"RefGRvalue"** | ||
} | ||
|
||
Entity "SummarizedExperiment" as SE3 { | ||
metadata(se) | ||
rowData(se) | ||
colData(se) | ||
.. assays(se) .. | ||
+ "RawTreated" | ||
+ "Controls" | ||
+ "Normalized" | ||
+ "RefRelativeViability" | ||
+ "RefGRvalue" | ||
+ **"Averaged"** | ||
} | ||
|
||
Entity "SummarizedExperiment" as SE4 { | ||
metadata(se) | ||
rowData(se) | ||
colData(se) | ||
.. assays(se) .. | ||
+ "RawTreated" | ||
+ "Controls" | ||
+ "Normalized" | ||
+ "RefRelativeViability" | ||
+ "RefGRvalue" | ||
+ "Averaged" | ||
+ **"Metrics"** | ||
- **Isobologram** | ||
- **Excess** | ||
- **Scores** | ||
} | ||
|
||
RD --> DF | ||
note right on link | ||
merge template, readouts, treatments, conditions | ||
end note | ||
DF --> SE: " create_SE()" | ||
note right on link | ||
Creates a SummarizedExperiment object with 2 asssays: | ||
1) a raw, treated, BumpyMatrix named "RawTreated" | ||
2) a raw, untreated, BumpyMatrix named "Controls" | ||
- maps treated to untreated references | ||
- averages untreated references | ||
end note | ||
SE --> SE2: " normalize_SE()" | ||
note right on link | ||
Normalize the treated readouts to their corresponding end note | ||
reference readout to compute a RelativeViability and GRvalue | ||
for both the references and treated conditions. | ||
end note | ||
SE2 --> SE3: " average_SE()" | ||
note right on link | ||
Average the replicates for the treated readout values. | ||
reference readout to compute a RelativeViability and GRvalue | ||
for both the references and treated conditions. | ||
end note | ||
SE3 --> SE4: " fit_SE()" | ||
note right on link | ||
Fit a dose response curve to the SE, | ||
and get back fit metrics for the curves | ||
- utilize the RefRelativeViability and RefGRValue | ||
end note | ||
|
||
@enduml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
@startuml | ||
set namespaceSeparator none | ||
skinparam linetype polyline | ||
skinparam backgroundcolor transparent | ||
|
||
Entity "raw data && metadata" as RD {} | ||
|
||
Entity "data.table(s)" as DF {} | ||
|
||
package MultiAssayExperiment as MAE <<Node>> { | ||
Entity "SummarizedExperiment(s)" as SE { | ||
metadata(se) | ||
rowData(se) | ||
colData(se) | ||
.. assays(se) .. | ||
+ "RawTreated" | ||
+ "Controls" | ||
+ "Normalized" | ||
+ "RefRelativeViability" | ||
+ "RefGRvalue" | ||
+ "Averaged" | ||
+ **"Metrics"** | ||
- **Isobologram** | ||
- **Excess** | ||
- **Scores** | ||
} | ||
} | ||
|
||
|
||
RD --> DF | ||
note right on link | ||
merge template, readouts, treatments, conditions | ||
end note | ||
|
||
DF --> MAE: " runDrugResponseProcessingPipeline()" | ||
note right on link | ||
generate an MAE with processed and analyzed data | ||
end note | ||
|
||
|
||
@enduml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# sudo apt-get install plantuml | ||
# pretty old version | ||
#jar_path="/usr/share/platinuml/platinuml.jar" | ||
# https://github.com/plantuml/plantuml/releases/download/v1.2023.13/plantuml-1.2023.13.jar | ||
jar_path="./plantuml-1.2023.13.jar" | ||
#java -Djava.awt.headless=true -jar $jar_path *.puml -tsvg -o ../images/ | ||
java -Djava.awt.headless=true -jar $jar_path *.puml -tpng -o ../images/ |