Skip to content

Commit

Permalink
Merge branch 'main' of github.com:tomotools/subtomotools
Browse files Browse the repository at this point in the history
  • Loading branch information
bwmr committed Nov 27, 2023
2 parents a98540d + 7dc371e commit e64fe28
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install ./
pip install pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
Scripts to facilitate STA, interfacing Warp/M, Relion 3.1, TomoTwin and whatever else seems relevant.

## Functions:
```upgrade-star```: Upgrade Warp-style star to Relion 3.1.4
```downgrade-star```: Downgrade Relion-3-style star to Warp/M
```upgrade-star```: Upgrade Warp-style star to Relion 3.1.4
```downgrade-star```: Downgrade Relion-3-style star to Warp/M

```project-particles```: Calculate 2D projections of subtomograms, with or without CTF correction.
```project-particles```: Calculate 2D projections of subtomograms, with or without CTF correction. CTF correction requires CTF volume.
```apply-subset```: Apply subset of particles from 2D classification to subtomogram star.

```tomotwin2warp```: **not included yet**, will be conversion of a tomotwin-generated coords directory to a Warp-style star
Expand Down

0 comments on commit e64fe28

Please sign in to comment.