Skip to content

Commit 600ecca

Browse files
authored
Merge branch 'reSub-v1' into reSub/nuc-threshold
2 parents ba6dbc1 + 403839b commit 600ecca

File tree

4 files changed

+1291
-5
lines changed

4 files changed

+1291
-5
lines changed

.github/workflows/ci.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on: [push, workflow_dispatch]
4+
5+
jobs:
6+
lock-check:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v5
10+
- name: Setup PDM
11+
uses: pdm-project/setup-pdm@94a823180e06fcde4ad29308721954a521c96ed0 # v4.4
12+
- run: pdm lock --check
13+
requirements-check:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v5
17+
- name: Setup PDM
18+
uses: pdm-project/setup-pdm@94a823180e06fcde4ad29308721954a521c96ed0 # v4.4
19+
- run: pdm export -f requirements -o new_requirements.txt
20+
- run: diff requirements.txt new_requirements.txt

EMT_data_analysis/figure_generation/colony_mask.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,8 @@ def cgal_vertices_faces_triangle_mesh(Q: Polyhedron_3):
245245
)
246246

247247
args = parser.parse_args()
248-
<<<<<<< HEAD
249248
if args.data_id is None:
250249
for data_id in const.EXAMPLE_ACM_IDS:
251250
main(data_id, args.output_directory)
252251
else:
253252
main(args.data_id, args.output_directory)
254-
=======
255-
main(args.manifest_path, args.feature_path, args.movie_id, args.output_directory)
256-
>>>>>>> 51c2829 (Remove typo)

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,11 @@ sudo apt-get install libxml2-dev libxslt-dev python-dev
1717
```bash
1818
python -m venv venv
1919
source venv/bin/activate
20-
pip install -e .
20+
pip install -r requirements.txt
2121
```
2222

23+
(Alternatively, if you have `pdm`, you can run `pdm sync`.)
24+
2325
# How to run:
2426

2527
## 1 - Feature extraction

0 commit comments

Comments
 (0)