Skip to content

Commit 106c4bc

Browse files
finishes initial structure
1 parent 97f5f02 commit 106c4bc

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+420
-50
lines changed

CITING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Citing
2+
3+
Cite HADDOCK3 with the following:
4+
5+
HADDOCK3, Bonvin's Lab, https://github.com/haddocking/haddock3, 2022.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Cheers!
1313

1414
## 1. Installation
1515

16-
To install HADDOCK3 follow the instructions in the [INSTALL](INSTALL.md) file.
16+
To install HADDOCK3 follow the instructions in the [INSTALL](docs/INSTALL.md) file.
1717

1818
## 2. Examples
1919

INSTALL.md renamed to docs/INSTALL.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# 1. Installation
1+
# Installation
22

33
Open a `terminal` window and navigate to the folder where you want to
44
install HADDOCK3; for example: `software`. The current installation
55
instructions are local and will affect only your user.
66

7-
## 1.1 Clone this repository:
7+
## 1 Clone this repository:
88

99
Mind the `--recursive` flag when cloning!
1010

@@ -20,7 +20,7 @@ cd -
2020
By the end of the above commands, you should be back to the `haddock3`
2121
main folder.
2222

23-
## 1.2 Create a virtual environment with Python 3.9+ and install dependencies:
23+
## 2 Create a virtual environment with Python 3.9+ and install dependencies:
2424

2525
You can use Python's `venv` or Anaconda depending on your choice.
2626
Commands are provided below:
@@ -40,13 +40,13 @@ conda env create -f requirements.yml
4040
conda activate haddock3
4141
```
4242

43-
## 1.3 Install the HADDOCK3 package and command line clients
43+
## 3 Install the HADDOCK3 package and command line clients
4444

4545
```bash
4646
python setup.py develop --no-deps
4747
```
4848

49-
## 1.4 Make a CNS binary shortcut to the expected path:
49+
## 4 Make a CNS binary shortcut to the expected path:
5050

5151
```bash
5252
mkdir -p bin/
@@ -64,7 +64,7 @@ HADDOCK3 from anywhere. To run HADDOCK3, follow the [usage
6464
guidelines](USAGE.md).
6565

6666

67-
## 1.5 Keep your installation up to date
67+
## 5 Keep your installation up to date
6868

6969
Navigate to the `haddock3` installation folder (the one you cloned from
7070
GitHub). Ensure you have the `haddock3` python environment activated.
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
.. include:: ../USAGE.md
1+
.. include:: ../CITING.md
22
:parser: myst_parser.sphinx_

docs/clients/clibm.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Benchmark Client
2+
================
3+
4+
.. argparse::
5+
:module: haddock.clis.cli_bm
6+
:func: _ap
7+
:prog: haddock3-bm

docs/clients/clicfg.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Retrieve config
2+
===============
3+
4+
.. argparse::
5+
:module: haddock.clis.cli_cfg
6+
:func: _ap
7+
:prog: haddock3-cfg

docs/clients/clidmn.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Benchmark Daemon
2+
================
3+
4+
.. argparse::
5+
:module: haddock.clis.cli_dmn
6+
:func: _ap
7+
:prog: haddock3-dmn

docs/clients/clihd3.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Run HADDOCK3
2+
============
3+
4+
.. automodule:: haddock.clis.cli
5+
6+
.. argparse::
7+
:module: haddock.clis.cli
8+
:func: _ap
9+
:prog: haddock3

docs/clients/climpi.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
HADDOCK3 MPI Run
2+
================
3+
4+
.. argparse::
5+
:module: haddock.clis.cli_mpi
6+
:func: _ap
7+
:prog: haddock3-mpitask

0 commit comments

Comments
 (0)