Skip to content

Commit 9d7f141

Browse files
committed
Merge branch 'master' of https://github.com/biswajitSM/LEADS into master
2 parents 4a26d4f + 137e7b2 commit 9d7f141

File tree

3 files changed

+72
-35
lines changed

3 files changed

+72
-35
lines changed

README.md

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,28 @@ And then install the leads program
3434
python setup.py install
3535
```
3636

37-
To save videos, install [ffmpeg](https://ffmpeg.org/download.html) and make sure you added it to your path (you can follow this [link](https://www.wikihow.com/Install-FFmpeg-on-Windows))
38-
3937
## Usage
4038

41-
To open the gui of kymograph analysis from a terminal
42-
> python -m leads.gui.kymograph_gui
39+
### From a terminal or command prompt
4340

44-
To open the gui for cropping large files in a folder
45-
> python -m leads.gui.crop_images_gui
41+
Activate environment in a terminal
42+
```sh
43+
conda activate leads-env
44+
```
45+
46+
To open the gui of kymograph analysis
47+
```sh
48+
python -m leads.gui.kymograph_gui
49+
```
50+
51+
To open the gui for cropping large number of image files in a folder
52+
```sh
53+
python -m leads.gui.crop_images_gui
54+
```
55+
56+
### Alternative
57+
58+
If you are in windows os, you can double click the bat script files [LEADS_kymoGUI.bat](./bat/LEADS_kymoGUI.bat) for the kymo program and [LEADS_cropGUI.bat](./bat/LEADS_cropGUI.bat) for the cropping program.
4659

4760
## Contributing
4861

@@ -56,3 +69,13 @@ List of contributors:
5669

5770
- Biswajit Pradhan (biswajitp145_at_gmail.com)
5871
- Roman Barth
72+
73+
## Pubslihed articles based on this module
74+
75+
[Condensin-driven loop extrusion on supercoiled DNA. *nature structural molecular biology*, 2022 (accepted)](https://doi.org/10.1101/2021.05.15.444164)
76+
77+
[ParS-independent recruitment of the bacterial chromosome-partitioning protein ParB. *Science Advances*, 2022 (accepted)](https://doi.org/10.1101/2021.11.02.466941)
78+
79+
[SMC complexes can traverse physical roadblocks bigger than their ring size, *bioRxiv*, 2021 (in press)](https://doi.org/10.1101/2021.07.15.452501)
80+
81+
[The Smc5/6 complex is a DNA loop extruding motor. *bioRxiv*, 2022](https://doi.org/10.1101/2022.05.13.491800)

requirements.txt

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,35 @@ numba
33
pandas
44
scipy
55
scikit-image
6-
matplotlib==3.4.1
7-
PyQt5
8-
napari==0.4.8
6+
matplotlib
7+
napari
98
pyqtgraph
109
opencv-python
1110
dask
1211
pims
1312
trackpy
1413
tqdm
15-
tifffile==2020.6.3
16-
roifile==2020.5.28
17-
PyYAML==5.4.1
14+
tifffile
15+
roifile
16+
PyYAML
1817
h5py
1918
tables
2019
qdarkstyle
2120
colorharmonies
2221
XlsxWriter
23-
ptvsd
22+
ptvsd
23+
24+
napari-simpleitk-image-processing
25+
napari-plot-profile
26+
napari-roi
27+
napari-plot
28+
napari-time-series-plotter
29+
napari-curtain
30+
# napari-nd-cropper
31+
napari-itk-io
32+
napari-features
33+
napari-elementary-numpy-operations
34+
napari-brightness-contrast
35+
napari-bil-data-viewer
36+
napari-animation
37+
napari-script-editor

setup.py

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,28 +19,28 @@
1919
],
2020
python_requires = '>=3.7',
2121
install_requires = [
22-
"numpy",
23-
"numba",
24-
"pandas",
25-
"scipy",
26-
"scikit-image",
27-
"matplotlib==3.4.1",
28-
"PyQt5",
29-
"napari==0.4.8",
30-
"pyqtgraph",
31-
"opencv-python",
32-
"dask",
33-
"pims",
34-
"trackpy",
35-
"tqdm",
36-
"tifffile==2020.6.3",
37-
"roifile==2020.5.28",
38-
"PyYAML",
39-
"h5py",
40-
"tables",
41-
"qdarkstyle",
42-
"colorharmonies",
43-
"XlsxWriter"
22+
# "numpy",
23+
# "numba",
24+
# "pandas",
25+
# "scipy",
26+
# "scikit-image",
27+
# "matplotlib==3.4.1",
28+
# "PyQt5",
29+
# "napari==0.4.8",
30+
# "pyqtgraph",
31+
# "opencv-python",
32+
# "dask",
33+
# "pims",
34+
# "trackpy",
35+
# "tqdm",
36+
# "tifffile==2020.6.3",
37+
# "roifile==2020.5.28",
38+
# "PyYAML",
39+
# "h5py",
40+
# "tables",
41+
# "qdarkstyle",
42+
# "colorharmonies",
43+
# "XlsxWriter"
4444
],
4545
dependency_links = ["git+https://github.com/pyqtgraph/pyqtgraph@master"]
4646
)

0 commit comments

Comments
 (0)