Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
07da1dc
Removed python cache
nromashchenko Jan 23, 2026
45d79ee
Added python wrapper for the snakemake pipeline
nromashchenko Jan 23, 2026
04c8583
Improvements to CLI and packaging
nromashchenko Feb 5, 2026
be3210b
Removed unnecessary files
nromashchenko Feb 5, 2026
e47a29b
Moved sources to src/foldtree to package with setuptools
nromashchenko Feb 5, 2026
3bef10e
Merge pull request #30 from DessimozLab/bioconda
nromashchenko Feb 6, 2026
9fec561
Reverted rules' conda env to explicit file not env name
nromashchenko Feb 9, 2026
d3ea095
Split the main env and minimized rule envs' dependencies
nromashchenko Feb 12, 2026
df9aa60
Removed --conda-frontend argument due to issues with mamba=2.1.*; It can
nromashchenko Feb 12, 2026
4118031
Restructured the project to make it callable both from sources and after
nromashchenko Feb 12, 2026
1c63573
Added .gitattributes
nromashchenko Feb 13, 2026
1ba7fdf
Fixed syntax in one of the scripts -- removed a linter error in the
nromashchenko Feb 13, 2026
a163b5d
Added --conda-prefix to control where conda envs are stored: defaulted
nromashchenko Feb 13, 2026
c767667
Updated README.md for post 1.1.0rc2 (python wrapper over snakemake)
nromashchenko Feb 13, 2026
bf55c0a
Updated README
nromashchenko Feb 13, 2026
a463c91
Updated README
nromashchenko Feb 13, 2026
821a81d
Version bumped to v1.1.0rc2
nromashchenko Feb 13, 2026
e3fe5ad
Colab notebook adapted to v1.1.0rc2
nromashchenko Feb 13, 2026
b4a7a39
Updated README
nromashchenko Feb 25, 2026
bad2eb7
Update snakefile path in GitHub Actions workflow
nromashchenko Mar 3, 2026
e420d97
Disabled linter and tests on Github Actions (as they were never used)
nromashchenko Mar 3, 2026
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
17 changes: 17 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.gitattributes export-ignore
.gitignore export-ignore

3diphy/ export-ignore
A-pro/ export-ignore
CATH_data/ export-ignore
Protein-comparison-tool/ export-ignore
docs/ export-ignore
docsource/ export-ignore
examples/ export-ignore
figures/ export-ignore
foldseek/ export-ignore
madroot/ export-ignore
mafftmat/ export-ignore
notebooks/ export-ignore
slurmsimple/ export-ignore
test-example/ export-ignore
33 changes: 0 additions & 33 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,36 +19,3 @@ jobs:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_SNAKEMAKE_SNAKEFMT: true

Linting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Lint workflow
uses: snakemake/snakemake-github-action@v1.24.0
with:
directory: .
snakefile: workflow/Snakefile
args: "--lint"

Testing:
runs-on: ubuntu-latest
needs:
- Linting
- Formatting
steps:
- uses: actions/checkout@v2

- name: Test workflow
uses: snakemake/snakemake-github-action@v1.24.0
with:
directory: .test
snakefile: workflow/Snakefile
args: "--use-conda --show-failed-logs --cores 3 --conda-cleanup-pkgs cache --all-temp"

- name: Test report
uses: snakemake/snakemake-github-action@v1.24.0
with:
directory: .test
snakefile: workflow/Snakefile
args: "--report report.zip"
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,6 @@ src/dataprep/**
!src/dataprep/*.py
!src/dataprep/*.sh

notebooks/**.pkl
notebooks/**.pkl

.ipynb_checkpoints/
Loading