-
Notifications
You must be signed in to change notification settings - Fork 3
/
sidebars.js
executable file
·128 lines (127 loc) · 3.9 KB
/
sidebars.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
* Copyright (c) 2020 The Ontario Institute for Cancer Research. All rights reserved
*
* This program and the accompanying materials are made available under the terms of the GNU Affero General Public License v3.0.
* You should have received a copy of the GNU Affero General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
* SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*
*/
module.exports = {
docs: [
{
type: 'category',
label: 'Submission',
collapsed: true,
items: [
'submission/submission-overview',
'submission/dictionary-overview',
'submission/registering-samples',
'submission/clinical-data-validation-rules',
'submission/submitting-clinical-data',
'submission/viewing-clinical-data',
'submission/submitting-molecular-data',
'submission/submitted-data',
'submission/managing-program-access',
'submission/faq',
],
},
{
type: 'category',
label: 'Data Access',
collapsed: true,
items: [
{
type: 'category',
label: 'ICGC DACO',
collapsed: false,
items: [
'data-access/daco/applying',
'data-access/daco/lay-summary-guide',
'data-access/daco/approval',
'data-access/daco/renew-close',
'data-access/daco/daco-faq',
],
},
{
type: 'category',
label: 'ICGC ARGO',
collapsed: false,
items: [
'data-access/data-download',
'data-access/user-profile-and-api-token',
'data-access/programmatic-apis',
'data-access/publication-guidelines',
],
},
{
type: 'category',
label: 'ICGC 25K',
collapsed: false,
items: ['data-access/icgc-25k-data'],
},
],
},
{
type: 'category',
label: 'Analysis Pipelines',
collapsed: true,
items: [
{
type: 'doc',
label: 'Overview',
id: 'analysis-workflows/analysis-overview',
},
{
type: 'category',
label: 'DNA-Seq Analysis',
collapsed: false,
items: [
'analysis-workflows/dna-alignment',
'analysis-workflows/dna-sanger-wgs-vc',
'analysis-workflows/dna-sanger-wxs-vc',
'analysis-workflows/dna-gatk-mutect2-vc',
'analysis-workflows/dna-open-access-filtering',
],
},
{
type: 'category',
label: 'RNA-Seq Analysis',
collapsed: false,
items: ['analysis-workflows/rna-alignment'],
},
],
},
{
type: 'category',
label: 'Data and File Types',
collapsed: true,
items: [
'data/reads',
'data/variant-calls',
'data/qc-metrics',
'data/transcriptome-profiling',
],
},
{
type: 'category',
label: 'Release Notes',
collapsed: true,
items: [
'release-notes/data-releases',
'release-notes/software-releases',
'release-notes/dictionary-releases',
],
},
],
};