Skip to content

Commit 48be8d4

Browse files
committed
changed urls to reflect hosting now on github
1 parent d21e785 commit 48be8d4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Two command-line tools and a clean Python API:
4141
## Quick Start
4242

4343
```bash
44-
git clone git@bitbucket.org:jacksonlaboratory/pylmm3.git
44+
git clone https://github.com/TheJacksonLaboratory/pylmm3.git
4545
cd pylmm3
4646
uv sync
4747

@@ -73,7 +73,7 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
7373
environment. This is the right path for anyone who just wants to run GWAS jobs.
7474

7575
```bash
76-
uv tool install git+https://bitbucket.org/jacksonlaboratory/pylmm3.git
76+
uv tool install git+https://github.com/TheJacksonLaboratory/pylmm3.git
7777

7878
# Commands are now available globally:
7979
pylmmKinship --bfile /data/study study.kin
@@ -86,10 +86,10 @@ pylmmGWAS --bfile /data/study --kfile study.kin --phenofile study.phenos out.
8686

8787
```bash
8888
# uv project
89-
uv add git+https://bitbucket.org/jacksonlaboratory/pylmm3.git
89+
uv add git+https://github.com/TheJacksonLaboratory/pylmm3.git
9090

9191
# pip / any other tool
92-
pip install git+https://bitbucket.org/jacksonlaboratory/pylmm3.git
92+
pip install git+https://github.com/TheJacksonLaboratory/pylmm3.git
9393
```
9494

9595
Then import:
@@ -103,7 +103,7 @@ from pylmm3 import LMM, calculateKinship, runGWAS
103103
### Tier 3 — Local development (clone and edit source)
104104

105105
```bash
106-
git clone git@bitbucket.org:jacksonlaboratory/pylmm3.git
106+
git clone https://github.com/TheJacksonLaboratory/pylmm3.git
107107
cd pylmm3
108108
uv sync # creates .venv, installs all dependencies + pylmm3 in editable mode
109109
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dependencies = [
1818
]
1919

2020
[project.urls]
21-
Repository = "https://bitbucket.org/jacksonlaboratory/pylmm3"
21+
Repository = "https://github.com/TheJacksonLaboratory/pylmm3"
2222

2323
[tool.setuptools.packages.find]
2424
include = ["pylmm3*"]

0 commit comments

Comments
 (0)