Skip to content

Commit

Permalink
finish 4ESV flatten example
Browse files Browse the repository at this point in the history
  • Loading branch information
HubLot committed Feb 7, 2025
1 parent 26176a7 commit 78404a2
Show file tree
Hide file tree
Showing 5 changed files with 82,571 additions and 17 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
**1.2.0**

- Handle alternate location (take location A by default) with ptools update.
- Return error message when the reduced pdbs don't have the same size for the Flattening.
- Flattening take into account the core regions now.
- Add an example for the flattening

**1.1.0**

- Improve English in text
Expand Down
15 changes: 15 additions & 0 deletions heligeom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,21 @@ def add_examples(db):
db.session.add(ice_AB_EF)
db.session.commit()

esv_flat = UserInputs(
request_id="4ESV_flat",
pdb_filename="4ESV.pdb",
chain1_id="B",
res_range1="132-365",
chain2_id="C",
res_range2="132-365",
core_filter1="manual",
core_region1="184-365",
core_filter2="manual",
core_region2="184-365",
)
db.session.add(esv_flat)
db.session.commit()


def create_app(config_object=None, clear_database=False):
# create and configure the app
Expand Down
Loading

0 comments on commit 78404a2

Please sign in to comment.