Skip to content
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
7 changes: 4 additions & 3 deletions .github/workflows/gui-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install -r requirements.txt
python -m pip install pyinstaller matplotlib scipy
python -m pip install .
python -m pip install pyinstaller

- name: Build macOS app
run: |
Expand Down Expand Up @@ -61,7 +61,8 @@ jobs:

- name: Install dependencies
run: |
python -m pip install -r requirements.txt --upgrade pip setuptools wheel
python -m pip install --upgrade pip setuptools wheel
pip install .
pip install pyinstaller

- name: Build Windows exe
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ or

A single column/array of observed MIC values.

#### Example (from `demo_files/input.txt`)
#### Example (from `demo_files/censored.txt`)

```text
MIC observations
Expand Down Expand Up @@ -147,7 +147,7 @@ Once installed, you can call the CLI.
Example using demo files:

```bash
ecoffitter --input demo_files/input.txt --params demo_files/params.txt --outfile demo_files/output.txt
ecoffitter --input demo_files/censored.txt --params demo_files/params.txt --outfile demo_files/output.txt
```

Instead of using a parameter file, you can also specify parameters directly.
Expand Down
Loading