Skip to content

Commit

Permalink
corrected missedCleavages key
Browse files Browse the repository at this point in the history
  • Loading branch information
picciama committed Oct 6, 2023
1 parent 9fc0ea2 commit bfce8db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Prerequisites:
- `docker <https://www.docker.com/>`_

After cloning the repository of oktoberfest, checkout the branch you want to build the container from.
The latest stable version is always on the main branch.
The latest stable version is always on the main branch. Then build the container.

.. code-block:: bash
Expand Down Expand Up @@ -150,7 +150,7 @@ The following flags are relevant only if a FASTA file is provided:
- `fastaDigestOptions`
- `fragmentation` = fragmentation method: "HCD" or "CID"
- `digestion` = digestion mode: "full", "semi" or None; default = "full"
- `cleavages` = number of allowed missed cleavages used in the search engine; default = 2
- `missedCleavages` = number of allowed missed cleavages used in the search engine; default = 2
- `minLength` = minimum peptide length allowed used in the search engine; default = 7
- `maxLength` = maximum peptide length allowed used in the search engine; default = 60
- `enzyme` = type of enzyme used in the search engine; default = "trypsin"
Expand All @@ -166,7 +166,7 @@ The general command for executing any job is:

.. code-block:: bash
python oktoberfest/run_oktoberfest.py --config_path path_to_config_file
python -m oktoberfest --config_path path_to_config_file
If you instead want to run oktoberfest using the docker image, run:

Expand Down
6 changes: 3 additions & 3 deletions ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ Prerequisites:
- `docker` (https://www.docker.com/)

After cloning the repository of oktoberfest, checkout the branch you want to build the container from.
The latest stable version is always on the main branch.
The latest stable version is always on the main branch. Then build the container.

```bash
make build
Expand Down Expand Up @@ -147,7 +147,7 @@ The following flags are relevant only if a FASTA file is provided:

- `digestion` = digestion mode: "full", "semi" or None; default = "full"

- `cleavages` = number of allowed missed cleavages used in the search engine; default = 2
- `missedCleavages` = number of allowed missed cleavages used in the search engine; default = 2

- `minLength` = minimum peptide length allowed used in the search engine; default = 7

Expand All @@ -166,7 +166,7 @@ An example of the config file can be found in `/oktoberfest/example_config.json`
The general command for executing any job is:

```bash
python oktoberfest/run_oktoberfest.py --config_path path_to_config_file
python -m oktoberfest --config_path path_to_config_file
```

If you instead want to run oktoberfest using the docker image, run:
Expand Down
2 changes: 1 addition & 1 deletion docs/config.rst
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Additional parameters required for in-silico digestion
+----------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| digestion | Digestion mode; can be "full", "semi" or None; default = "full" |
+----------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| cleavages | Number of allowed missed cleavages used in the search engine for generation of the provided search results; default = 2 |
| missedCleavages | Number of allowed missed cleavages used in the search engine for generation of the provided search results; default = 2 |
+----------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| minLength | Minimum peptide length allowed used in the search engine for generation of the provided search results; default = 7 |
+----------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Expand Down

0 comments on commit bfce8db

Please sign in to comment.