Skip to content

Commit

Permalink
Merge pull request #115 from monarch-initiative/issue-114
Browse files Browse the repository at this point in the history
Adding installation guide.
  • Loading branch information
ielis authored May 21, 2024
2 parents ff83434 + 42c5846 commit 21dc084
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 66 deletions.
65 changes: 0 additions & 65 deletions .github/workflows/generate_phenopackets.yml

This file was deleted.

30 changes: 30 additions & 0 deletions docs/developers/developers.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# For developers

## Local Installation

We recommend creating a local environment:

```bash
python3 -m venv venv
source venv/bin/activate
```

and updating Python's `pip` tool:

```bash
python3 -m pip install --upgrade pip
```

You can then do a local/editable install:


```bash
python3 -m pip install --editable ".[test]"
```

After installation you should be able to run the test suite:

```bash
pytest
```


## Creating Phenopackets

pyphetools provides two main ways of creating phenopackets.

Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/template.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ tc.create_template(disease_id="",
disease_label="",
gene_symbol="",
HGNC_id="",
transcript=""
transcript="")
```


Expand Down

0 comments on commit 21dc084

Please sign in to comment.