Skip to content

Commit

Permalink
chore: Merge branch 'main' of https://github.com/CCBR/RENEE
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Aug 7, 2024
2 parents e14983e + 39938fd commit 39d85fc
Show file tree
Hide file tree
Showing 20 changed files with 1,691 additions and 1,162 deletions.
17 changes: 14 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,22 @@
## RENEE development version

- Minor documentation improvements. (#132, #135, @kelly-sovacool)
### New features

- Support hg38 release 45 on biowulf & FRCE. (#127, @kelly-sovacool)
- Show the name of the pipeline rather than the python script for CLI help messages. (#131, @kelly-sovacool)
- Add GUI instructions to the documentation website. (#38, @samarth8392)
- Set default shared singularity SIF directory for biowulf and frce. (#94, @kelly-sovacool)
- Add `renee gui` subcommand to launch the graphical user interface. (#94, @kelly-sovacool)
- Previously, `renee_gui` (with an underscore) was a command in the `ccbrpipeliner` module.

### Bug fixes

- Ensure `renee build` creates necessary `config` directory during initialization. (#139, @kelly-sovacool)

### Documentation updates

- Minor documentation improvements. (#132, #135, @kelly-sovacool)
- Add GUI instructions to the documentation website. (#38, @samarth8392)
- The docs website now has a dropdown menu to select which version to view. The latest release is shown by default. (#150, @kelly-sovacool)
- Show the name of the pipeline rather than the python script for CLI help messages. (#131, @kelly-sovacool)

## RENEE 2.5.12

Expand Down
2 changes: 1 addition & 1 deletion bin/redirect
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ elif [[ $ISFRCE == true ]];then
export PATH="/mnt/projects/CCBR-Pipelines/bin:$PATH"
fi

${TOOLDIR}/src/renee/__main__.py "$@" || true
${TOOLDIR}/main.py "$@" || true
16 changes: 16 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/usr/bin/env python
import os
import re
import sys
from src.renee.__main__ import main

# add script directory to the path to allow the CLI to work out-of-the-box
# without the need to install it via pip first
SCRIPT_DIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), "src", "renee")
sys.path.append(SCRIPT_DIR)

if (
__name__ == "__main__"
): # this block is adapted from the executable file created by `pip install`
sys.argv[0] = re.sub(r"(-script\.pyw|\.exe)?$", "", sys.argv[0])
sys.exit(main())
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,13 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
requires-python = ">=3.8"
requires-python = ">=3.11"
dependencies = [
"argparse",
"Click >= 8.1.3",
"PySimpleGui < 5",
"snakemake >= 7, < 8",
"snaketool-utils >= 0.0.5",
"argparse"
]

[project.optional-dependencies]
Expand Down
Binary file added resources/CCBRlogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed resources/nih-bnfo-logo.png
Binary file not shown.
Loading

0 comments on commit 39d85fc

Please sign in to comment.