Skip to content

Commit

Permalink
add rpf [a subset of nmr-star] shift list support
Browse files Browse the repository at this point in the history
  • Loading branch information
locsmith committed Mar 22, 2023
1 parent e3c84da commit b402f8e
Show file tree
Hide file tree
Showing 4 changed files with 408 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/nef_pipelines/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ def main():
import nef_pipelines.transcoders.nmrview # noqa: F401
import nef_pipelines.transcoders.pales # noqa: F401
import nef_pipelines.transcoders.pdbx # noqa: F401
import nef_pipelines.transcoders.rpf # noqa: F401
import nef_pipelines.transcoders.shifty # noqa: F401
import nef_pipelines.transcoders.sparky # noqa: F401
import nef_pipelines.transcoders.xcamshift # noqa: F401
Expand Down
19 changes: 19 additions & 0 deletions src/nef_pipelines/transcoders/rpf/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import typer

from nef_pipelines import nef_app

app = typer.Typer()
# import_app = typer.Typer()
export_app = typer.Typer()

if nef_app.app:

nef_app.app.add_typer(app, name="rpf", help="- write rpf shifts")

# app.add_typer(import_app, name="import", help="- import fasta sequences")
app.add_typer(export_app, name="export", help="- export rpf shifts")

# import of specific importers must be after app creation to avoid circular imports
import nef_pipelines.transcoders.nmr_star.exporters.shifts # noqa: F401

# import nef_pipelines.transcoders.fasta.importers.sequence # noqa: F401
Empty file.

0 comments on commit b402f8e

Please sign in to comment.