forked from scverse/rustar-aligner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
81 lines (80 loc) · 2.8 KB
/
astro.config.mjs
File metadata and controls
81 lines (80 loc) · 2.8 KB
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
// @ts-check
import { defineConfig } from 'astro/config';
import starlight from '@astrojs/starlight';
export default defineConfig({
site: 'https://scverse.org',
base: '/rustar-aligner',
integrations: [
starlight({
title: 'rustar-aligner',
logo: {
src: './src/assets/rustar-icon.svg',
},
favicon: '/favicon.svg',
head: [
{ tag: 'link', attrs: { rel: 'preconnect', href: 'https://fonts.googleapis.com' } },
{ tag: 'link', attrs: { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' } },
{
tag: 'link',
attrs: {
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap',
},
},
],
components: {
Header: './src/components/Header.astro',
},
customCss: ['./src/styles/custom.css'],
social: [
{
icon: 'github',
label: 'GitHub',
href: 'https://github.com/scverse/rustar-aligner',
},
],
editLink: {
baseUrl: 'https://github.com/scverse/rustar-aligner/edit/main/docs/',
},
sidebar: [
{
label: 'Getting started',
items: [
{ label: 'Introduction', slug: 'getting-started/introduction' },
{ label: 'Installation', slug: 'getting-started/installation' },
{ label: 'Quick start', slug: 'getting-started/quick-start' },
],
},
{
label: 'Guides',
items: [
{ label: 'Generating a genome index', slug: 'guides/genome-index' },
{ label: 'Single-end alignment', slug: 'guides/single-end' },
{ label: 'Paired-end alignment', slug: 'guides/paired-end' },
{ label: 'Two-pass mode', slug: 'guides/two-pass' },
{ label: 'Chimeric detection', slug: 'guides/chimeric' },
{ label: 'Gene quantification', slug: 'guides/quantification' },
{ label: 'Migrating from STAR', slug: 'guides/migrating-from-star' },
],
},
{
label: 'Reference',
items: [
{ label: 'CLI parameters', slug: 'reference/cli-parameters' },
{ label: 'Output files', slug: 'reference/output-files' },
{ label: 'STAR compatibility', slug: 'reference/star-compatibility' },
{ label: 'Performance', slug: 'reference/performance' },
],
},
{
label: 'About',
items: [
{ label: 'Contributing', slug: 'about/contributing' },
{ label: 'Changelog', slug: 'about/changelog' },
{ label: 'License', slug: 'about/license' },
],
},
],
}),
],
});