-
Notifications
You must be signed in to change notification settings - Fork 0
/
observablehq.config.ts
57 lines (55 loc) · 2.12 KB
/
observablehq.config.ts
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
// See https://observablehq.com/framework/config for documentation.
export default {
// The project’s title; used in the sidebar and webpage titles.
title: "bioinformatics-toolkit",
search: true,
root: "src",
// The pages and sections in the sidebar. If you don’t specify this option,
// all pages will be listed in alphabetical order. Listing pages explicitly
// lets you organize them into sections and have unlisted pages.
pages: [
{
name: "Fasta Utiliies",
pages: [
{ name: "Simple", path: "fastx/fasta_simple" },
{ name: "FQ->Fasta", path: "fastx/fastq_to_fasta" },
{ name: "Fastx Stats", path: "fastx/fastx_stats" },
],
},
{
name: "DNA Utiliies",
pages: [
{ name: "RE_Analysis", path: "dna/restriction_enzyme_analysis" },
{ name: "Translation", path: "dna/translation" },
],
},
{
name: "RNA Utiliies",
pages: [{ name: "RNAnapkin", path: "rna/rna_rnapkin_viz" }],
},
{
name: "Javascript Utiliies",
pages: [
{ name: "IGVJS", path: "JSApps/igvjs" },
// {name: "Gosling", path: "JSApps/gosling"},
{ name: "graphgenomeviewer", path: "JSApps/genomegraph" },
{ name: "msaviewer", path: "JSApps/msa-viewer" },
{ name: "ribbon", path: "JSApps/ribbon" },
{ name: "ideogram", path: "JSApps/ideogram" },
],
},
],
// Some additional configuration options and their defaults:
// theme: "default", // try "light", "dark", "slate", etc.
// header: "", // what to show in the header (HTML)
// head: ({
// path,
// }) => `<link rel="canonical" href="${path.replace(/\/index$/, "/")}">
// <link rel="apple-touch-icon" href="/logo.png">
// <link rel="icon" type="image/png" href="/logo.png" sizes="32x32">`,
head: '<link rel="icon" href="icon.png" type="image/png" sizes="32x32">',
// footer: "Built with Observable.", // what to show in the footer (HTML)
toc: true, // whether to show the table of contents
// pager: true, // whether to show previous & next links in the footer
// output: "dist", // path to the output root for build
};