diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 64a7f76..5b91170 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,9 +21,8 @@ jobs: # --- Build 'docs' documentation --- - name: Install 'docs' dependencies - working-directory: ./docs run: | - python -m pip install -r requirements.txt + python -m pip install '.[doc]' - name: Build 'docs' documentation working-directory: ./docs diff --git a/docs/source/data.rst b/docs/source/data.rst index d8fb9e7..34f54bb 100644 --- a/docs/source/data.rst +++ b/docs/source/data.rst @@ -42,7 +42,7 @@ To illustrate how to use gsMap, we provide some example GWAS and ST data. You ca .. _data-availability: Data Availability ----------------- +------------------- .. list-table:: :header-rows: 1 diff --git a/docs/source/data_format.md b/docs/source/data_format.md index d36684f..39dffbc 100644 --- a/docs/source/data_format.md +++ b/docs/source/data_format.md @@ -30,7 +30,7 @@ rs12184279 A C 1.050 226224 rs116801199 T G 0.300 226626 ``` -#### How to format the GWAS data +### How to format the GWAS data You can convert GWAS summary data into the required format using custom code. For convenience, gsMap provides a command to do this. Below is an example of how to use the command. Download the human height GWAS data and decompress it. diff --git a/docs/source/index.rst b/docs/source/index.rst index 3aea112..ae25999 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -52,7 +52,7 @@ How to use ``gsMap``, check out the `tutorials `__ Online Analysis Service (coming soon) ---------- +-------------------------------------- Users could upload their own GWAS summary statistics data to perform the analysis. diff --git a/src/gsMap/__init__.py b/src/gsMap/__init__.py index 8dabe4d..1e6fb91 100644 --- a/src/gsMap/__init__.py +++ b/src/gsMap/__init__.py @@ -2,4 +2,4 @@ Genetics-informed pathogenic spatial mapping """ -__version__ = "1.72.2" +__version__ = "1.72.3"