forked from baigal628/computation_wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mkdocs.yml
110 lines (97 loc) · 3.23 KB
/
mkdocs.yml
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
## Site details
site_name: 'computation wiki'
site_description: 'computational wiki from Ming (Tommy) Tang'
site_author: 'Ming Tang'
site_url: 'https://crazyhottommy.github.io/computation_wiki/'
repo_name: 'crazyhottommy/computation_wiki'
repo_url: 'https://github.com/crazyhottommy/computation_wiki'
nav:
- Home: index.md
- Computation Setup:
- set up MacOS: setup/setup_macos.md
- set up HPC accounts: setup/hpc-info.md
- Working with Kraken:
- mount kraken folder to local computer: kraken/kraken_sshfs.md
- Run Rstudio on Kraken: kraken/kraken_rstudio.md
- Run jupyter notebook: kraken/kraken_jupyter.md
- Working with Google Cloud:
- Getting Started with gcp: google-cloud/getting-started-google-cloud.md
- Running Automators Part 0: google-cloud/Running_Automator_part0.md
- Running Automators Part 1: google-cloud/Running_Automator_part1.md
- Running Automators Part 2 ChIPs: google-cloud/Running_Automator_part2_chips.md
- Running Automators Part 2 RIMA: google-cloud/Running_Automator_part2_rima.md
- Running Automators Part 2 WES: google-cloud/Running_Automator_part2_wes.md
- Running Ingestion: google-cloud/Running_Ingestion.md
- Common Ingestion Errors: google-cloud/Ingestion_Errors.md
- Run WES on gcp: google-cloud/wes-gcp.md
- Run CHIPS on gcp: google-cloud/chips-gcp.md
- Run TCR on gcp: google-cloud/tcr-gcp.md
- Build Reference Snapshot: google-cloud/build-reference-snapshot.md
- Build Image: google-cloud/build-new-image.md
- Expand root partition: google-cloud/expand-partition.md
- Common Q&A: google-cloud/common-questions.md
- ATACseq pipeline:
- Make bwa indices: atac/atac-bwa-reference.md
- RIMA RNAseq pipeline:
- Build RIMA references: RIMA/build-RIMA-reference.md
- miscellaneous:
- Making figures: miscellaneous/inkscape.md
## Copyright
copyright: 'Copyright © 2020 <a href="https://divingintogeneticsandgenomics.rbind.io/">Ming Tang</a>'
## Configuration
theme:
name: material
language: 'en'
palette:
primary: 'Blue'
accent: 'Blue'
font:
text: 'IBM Plex Sans'
code: 'Fira Code'
# logo: 'assets/images/logo.png'
# favicon: 'assets/images/logo.png'
feature:
tabs: false
extra_css:
- 'assets/css/katex.css'
- 'https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.css'
extra_javascript:
- 'assets/js/katex.js'
- 'https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/katex.min.js'
- 'https://cdn.jsdelivr.net/npm/katex@0.11.1/dist/contrib/auto-render.min.js'
# Google Analytics
google_analytics:
- ''
- 'auto'
markdown_extensions:
- admonition
- fontawesome_markdown
- codehilite:
guess_lang: false
linenums: true
- toc:
permalink: true
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tilde
- meta
- footnotes
- pymdownx.emoji
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.betterem:
smart_enable: all
# - pymdownx.arithmatex:
# generic: true
plugins:
- search
- git-revision-date-localized:
type: date
- minify:
minify_html: true