forked from Cloufield/GWASTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
112 lines (106 loc) · 3.72 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
111
112
site_name: GWASTutorial
site_author: HE Yunye
repo_name: 'GitHub'
repo_url: https://github.com/Cloufield/GWASTutorial
edit_uri: ""
copyright: "GWASTutorial is licensed under the MIT license"
theme:
name: material
features:
- navigation.tabs
- navigation.top
- navigation.tracking
- navigation.path
font:
code: Roboto Mono
text: Roboto
palette:
primary: blue
accent: blue
nav:
- Home:
- "Tutorial guide" : index.md
- "About" : 99_About.md
- "Command Line" :
- "Linux" :
- "Linux Basics" : 02_Linux_basics.md
- "Windows Linux Subsystem" : 82_windows_linux_subsystem.md
- "SSH" : 84_ssh.md
- "Job scheduler" : 85_job_scheduler.md
- "Text editing - awk" : 60_awk.md
- "Text editing - sed" : 61_sed.md
- "Linux Resources" : 69_resources.md
- "Python":
- "Python Basics": 70_python_basics.md
- "Python Resources" : 71_python_resources.md
- "Anaconda" : 80_miniconda.md
- "Jupyter notebook" : 81_jupyter_notebook.md
- "R" :
- "R Basics": 75_R_basics.md
- "R Resources" : 76_R_resources.md
- "Other tools" :
- "Git and github" : 83_git_and_github.md
- "Pre-GWAS" :
- "Sample Dataset" : 01_Dataset.md
- "Data Formats" : 03_Data_formats.md
- "Genotype Data QC" : 04_Data_QC.md
- "Sample PCA" : 05_PCA.md
- "Plot PCA" : plot_PCA.ipynb
- "Phasing" : Phasing.md
- "Imputation": Imputation.md
- "GWAS" :
- "Association tests by PLINK": 06_Association_tests.md
- "Visualization by gwaslab": Visualization.ipynb
- "Linear mixed model (LMM)" : 33_linear_mixed_model.md
- "Whole genome regression by REGENIE" : 32_whole_genome_regression.md
- "Post-GWAS" :
- "Annotation by ANNOVAR & VEP" : 07_Annotation.md
- "SNP-heritability estimation by GREML" : 14_gcta_greml.md
- "LD socre regression by LDSC" : 08_LDSC.md
- "Gene/Gene-set tests by MAGMA" : 09_Gene_based_analysis.md
- "Fine-mapping by susieR" :
- "Fine-mapping Basics" : 12_fine_mapping.md
- "SuSIE Fine-mapping Tutorial" : finemapping_susie.ipynb
- "Meta-analysis" : 11_meta_analysis.md
- "Polygenic Risk Score" :
- "PRS Basics" : 10_PRS.md
- "PRS evaluation" : PRS_evaluation.md
- "PRS Tutorial" : prs_tutorial.ipynb
- "Mendelian randomization":
- "MR Basics" : 16_mendelian_randomization.md
- "TwoSampleMR Tutorial" : TwoSampleMR.ipynb
- "Conditional analysis" : 18_Conditioning_analysis.md
- "Colocalization" : 17_colocalization.md
- "TWAS (using FUSION)": 21_twas.md
- Topics :
- "Linkage Disequilibrium (LD)" : 19_ld.md
- "Heritability Concepts" : 13_heritability.md
- "Statistical power" : 20_power_analysis.md
- "Winner's curse" : 15_winners_curse.md
- "Measure of effect" : 55_measure_of_effect.md
- "Recommended reading" : 90_Recommended_Reading.md
- "Assignments" :
- "Assignment - 1KG PCA" : 95_Assignment.md
- "Assignment - Presentation" : 96_Assignment2.md
markdown_extensions:
- toc:
toc_depth: 3
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.arithmatex:
generic: true
- tables
extra_javascript:
- javascripts/mathjax.js
- https://polyfill.io/v3/polyfill.min.js?features=es6
- https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js
- https://unpkg.com/[email protected]/dist/tablesort.min.js
- javascripts/tablesort.js
extra_css:
- stylesheets/extra.css
plugins:
- mkdocs-jupyter
- search