Skip to content

Commit de2170c

Browse files
committed
Updated docs
1 parent 5a6fd5e commit de2170c

File tree

4 files changed

+25
-54
lines changed

4 files changed

+25
-54
lines changed

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name: Deploy Jekyll site to Pages
88

99
on:
1010
push:
11-
branches: ["main", "gw_dev"]
11+
branches: ["main", "gwplot_dev"]
1212

1313
# Allows you to run this workflow manually from the Actions tab
1414
workflow_dispatch:

README.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -2,40 +2,17 @@
22

33
`gwplot` is a plotting library for genomics data and a Python interface to GW, a high-performance interactive genome browser.
44

5-
Visit the documentation for more details: https://kcleal.github.io/gwplot/
5+
Visit the [documentation for more details](https://kcleal.github.io/gwplot/)
66

77
[![Build Status](https://github.com/kcleal/gwplot/actions/workflows/build.yml/badge.svg)](https://github.com/kcleal/gwplot/actions)
88

9-
## Overview
10-
11-
`gwplot` can be used for rapid visualization of:
12-
13-
- Aligned sequencing reads (BAM files)
14-
- Genomic data tracks (VCF, BED, etc.)
15-
- Structural variants and complex rearrangements
16-
- Entire chromosomes with minimal memory usage
17-
189

1910
## Installation
2011

21-
### From PyPI
22-
2312
```bash
2413
pip install gwplot
2514
```
2615

27-
### Building from Source (macOS)
28-
29-
```bash
30-
# Install dependencies with Homebrew
31-
brew install fontconfig freetype glfw htslib jpeg-turbo libpng xz
32-
33-
git clone --recursive https://github.com/kcleal/gwplot
34-
cd gwplot
35-
pip install -r requirements.txt
36-
pip install .
37-
```
38-
3916
## Quick Start
4017

4118
```python

docs/Gemfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
source 'https://rubygems.org'
22

3-
gem "jekyll", "~> 4.3.2" # installed by `gem jekyll`
4-
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
5-
6-
gem "just-the-docs", "0.10.1" # pinned to the current release
7-
# gem "just-the-docs" # always download the latest release
8-
9-
# gem "github-pages", group: :jekyll_plugins
3+
gem 'jekyll', '~> 4.3.2'
4+
gem 'just-the-docs', '~> 0.8.2'
5+
gem 'webrick', '~> 1.8' # Required for Ruby 3+ with Jekyll 4+

docs/Gemfile.lock

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
addressable (2.8.6)
5-
public_suffix (>= 2.0.2, < 6.0)
4+
addressable (2.8.7)
5+
public_suffix (>= 2.0.2, < 7.0)
66
colorator (1.1.0)
7-
concurrent-ruby (1.2.2)
7+
concurrent-ruby (1.3.5)
88
em-websocket (0.5.3)
99
eventmachine (>= 0.12.9)
1010
http_parser.rb (~> 0)
1111
eventmachine (1.2.7)
12-
ffi (1.15.5)
12+
ffi (1.17.1-arm64-darwin)
1313
forwardable-extended (2.6.0)
14-
google-protobuf (3.25.5-arm64-darwin)
15-
google-protobuf (3.25.5-x86_64-linux)
14+
google-protobuf (3.23.4-arm64-darwin)
1615
http_parser.rb (0.8.0)
17-
i18n (1.14.1)
16+
i18n (1.14.7)
1817
concurrent-ruby (~> 1.0)
19-
jekyll (4.3.2)
18+
jekyll (4.3.4)
2019
addressable (~> 2.4)
2120
colorator (~> 1.0)
2221
em-websocket (~> 0.5)
@@ -45,40 +44,39 @@ GEM
4544
jekyll-include-cache
4645
jekyll-seo-tag (>= 2.0)
4746
rake (>= 12.3.1)
48-
kramdown (2.4.0)
49-
rexml
47+
kramdown (2.5.1)
48+
rexml (>= 3.3.9)
5049
kramdown-parser-gfm (1.1.0)
5150
kramdown (~> 2.0)
5251
liquid (4.0.4)
53-
listen (3.8.0)
52+
listen (3.9.0)
5453
rb-fsevent (~> 0.10, >= 0.10.3)
5554
rb-inotify (~> 0.9, >= 0.9.10)
5655
mercenary (0.4.0)
5756
pathutil (0.16.2)
5857
forwardable-extended (~> 2.6)
59-
public_suffix (5.0.3)
60-
rake (13.0.6)
58+
public_suffix (5.1.1)
59+
rake (13.2.1)
6160
rb-fsevent (0.11.2)
62-
rb-inotify (0.10.1)
61+
rb-inotify (0.11.1)
6362
ffi (~> 1.0)
64-
rexml (3.3.9)
63+
rexml (3.4.1)
6564
rouge (3.30.0)
6665
safe_yaml (1.0.5)
67-
sass-embedded (1.58.3)
66+
sass-embedded (1.58.3-arm64-darwin)
6867
google-protobuf (~> 3.21)
69-
rake (>= 10.0.0)
7068
terminal-table (3.0.2)
7169
unicode-display_width (>= 1.1.1, < 3)
72-
unicode-display_width (2.5.0)
73-
webrick (1.8.2)
70+
unicode-display_width (2.6.0)
71+
webrick (1.9.1)
7472

7573
PLATFORMS
76-
arm64-darwin-22
77-
x86_64-linux
74+
arm64-darwin-24
7875

7976
DEPENDENCIES
8077
jekyll (~> 4.3.2)
81-
just-the-docs (= 0.10.1)
78+
just-the-docs (~> 0.8.2)
79+
webrick (~> 1.8)
8280

8381
BUNDLED WITH
8482
2.3.26

0 commit comments

Comments
 (0)