8000 minor docs changes by gbouras13 · Pull Request #23 · gbouras13/phold · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

minor docs changes #23

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ phold install
* If you are running `phold` on a local work statio with GPU available, using `phold run` is recommended. It runs both `phold predict` and `phold compare`

```
phold run -i tests/test_data/pharokka.gbk -o test_output_phold -t 8
phold run -i tests/test_data/NC_043029.gbk -o test_output_phold -t 8
```

* If you do not have a GPU available, add `--cpu`
Expand All @@ -77,13 +77,13 @@ phold run -i tests/test_data/pharokka.gbk -o test_output_phold -t 8
1. Predict the 3Di sequences with ProstT5 using `phold predict`. This is massively accelerated if a GPU available.

```
phold predict -i tests/test_data/pharokka.gbk -o test_predictions
phold predict -i tests/test_data/NC_043029.gbk -o test_predictions
```

2. Compare the the 3Di sequences to the `phold` structure database with Foldseek using `phold compare`. This does not utilise a GPU.

```
phold compare -i tests/test_data/pharokka.gbk --predictions_dir test_predictions -o test_output_phold -t 8
phold compare -i tests/test_data/NC_043029.gbk --predictions_dir test_predictions -o test_output_phold -t 8
```

# Output
Expand Down
3 changes: 2 additions & 1 deletion docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ conda deactivate
## Step 3 Installing `phold`

* To install phold from source, replace the pip step with `pip install -e .`
* `phold` should work with Python v3.8-3.11. The below uses 3.11

```bash
mamba create -n pholdENV foldseek pip
mamba create -n pholdENV foldseek pip python=3.11
conda activate pholdENV
pip install phold
phold install
Expand Down
0