Skip to content

Commit bbfb89a

Browse files
committed
Docs
1 parent f7dbfb1 commit bbfb89a

File tree

4 files changed

+17
-8
lines changed

4 files changed

+17
-8
lines changed

documentation.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ toc:
1010
- MultiTrackPlot
1111
- MultiDataTrackPlot
1212
- HierarchicalMultiTrackPlot
13-
- StratifiedBoxPlot
1413
- GenomeScatterPlot
1514
- GenomeTrackPlot
1615
- GenomeMultiTrackPlot
1716
- GenomeStackedBarPlot
18-
- StratifiedScatterPlot
17+
- StratifiedBoxPlot
18+
- DoubleStratifiedBoxPlot
1919
- StratifiedSinaPlot
20+
- DoubleStratifiedSinaPlot
21+
- StratifiedScatterPlot
22+
- DoubleStratifiedScatterPlot
2023
- StratifiedKaplanMeierPlot
2124
- CountBarPlot
2225
- mixin

src/components/plots/DoubleStratifiedBoxPlot.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,15 @@ let uuid = 0;
135135
* @extends mixin
136136
*
137137
* @example
138-
* <StratifiedBoxPlot
138+
* <DoubleStratifiedBoxPlot
139139
* data="boxplot_data"
140140
* variable="COSMIC 1"
141141
* s="stratification_data"
142+
* x="smoking_binary"
143+
* s2="stratification_data"
144+
* x2="sex"
142145
* y="exposure"
143146
* o="sample_id"
144-
* x="smoking_binary"
145147
* :pWidth="500"
146148
* :pHeight="300"
147149
* :pMarginTop="10"

src/components/plots/DoubleStratifiedScatterPlot.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,15 @@ let uuid = 0;
9292
* @extends mixin
9393
*
9494
* @example
95-
* <StratifiedScatterPlot
95+
* <DoubleStratifiedScatterPlot
9696
* data="exposures_data"
9797
* variable="COSMIC 1"
9898
* s="clinical_data"
99+
* x="age"
100+
* s2="clinical_data"
101+
* x2="sex"
99102
* y="cosmic_1_exposure"
100103
* o="sample_id"
101-
* x="age"
102104
* :pWidth="500"
103105
* :pHeight="300"
104106
* :pMarginTop="10"

src/components/plots/DoubleStratifiedSinaPlot.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,13 +147,15 @@ let uuid = 0;
147147
* @extends mixin
148148
*
149149
* @example
150-
* <StratifiedSinaPlot
150+
* <DoubleStratifiedSinaPlot
151151
* data="boxplot_data"
152152
* variable="COSMIC 1"
153153
* s="stratification_data"
154+
* x="smoking_binary"
155+
* s2="stratification_data"
156+
* x2="sex"
154157
* y="exposure"
155158
* o="sample_id"
156-
* x="smoking_binary"
157159
* :pWidth="500"
158160
* :pHeight="300"
159161
* :pMarginTop="10"

0 commit comments

Comments
 (0)