psdi-data-conversion 0.0.36__py3-none-any.whl → 0.0.38__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,13 +1,11 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: psdi_data_conversion
3
- Version: 0.0.36
3
+ Version: 0.0.38
4
4
  Summary: Chemistry file format conversion service, provided by PSDI
5
5
  Project-URL: Homepage, https://data-conversion.psdi.ac.uk/
6
6
  Project-URL: Documentation, https://psdi-uk.github.io/psdi-data-conversion/
7
- Project-URL: Repository, https://github.com/PSDI-UK/psdi-data-conversion
8
7
  Project-URL: Issues, https://github.com/PSDI-UK/psdi-data-conversion/issues
9
8
  Project-URL: Changelog, https://github.com/PSDI-UK/psdi-data-conversion/blob/main/CHANGELOG.md
10
- Project-URL: Download, https://github.com/PSDI-UK/psdi-data-conversion/releases/latest
11
9
  Author: Ray Whorley, Don Cruickshank, Tom Underwood
12
10
  Author-email: Samantha Pearman-Kanza <s.pearman-kanza@soton.ac.uk>, Bryan Gillis <7204836+brgillis@users.noreply.github.com>
13
11
  License: Apache License
@@ -245,7 +243,7 @@ Description-Content-Type: text/markdown
245
243
 
246
244
  # PSDI Data Conversion
247
245
 
248
- Version: Pre-release 2024-02-27
246
+ Version: Pre-release 2024-04-14
249
247
 
250
248
  This is the repository for the PSDI PF2 Chemistry File Format Conversion project. The goal of this project is to provide utilities to assist in converting files between the many different file formats used in chemistry, providing information on what converters are available for a given conversion and the expected quality of it, and providing multiple interfaces to perform these conversions. These interfaces are:
251
249
 
@@ -278,7 +276,14 @@ This is the repository for the PSDI PF2 Chemistry File Format Conversion project
278
276
  - [Installation and Setup](#installation-and-setup)
279
277
  - [Running the App](#running-the-app)
280
278
  - [Testing](#testing)
281
- - [Licencing](#licencing)
279
+ - [Troubleshooting](#troubleshooting)
280
+ - [OSError: [Errno 24] Too many open files](#oserror-errno-24-too-many-open-files)
281
+ - [Errors running c2x or Atomsk converters](#errors-running-c2x-or-atomsk-converters)
282
+ - [A supported conversion fails](#a-supported-conversion-fails)
283
+ - [Input file is malformatted or corrupt](#input-file-is-malformatted-or-corrupt)
284
+ - [Input file's format is misidentified](#input-files-format-is-misidentified)
285
+ - [Other known issues](#other-known-issues)
286
+ - [Licensing](#licensing)
282
287
  - [Contributors](#contributors)
283
288
  - [Funding](#funding)
284
289
 
@@ -312,15 +317,17 @@ This is the repository for the PSDI PF2 Chemistry File Format Conversion project
312
317
  - `test_data`
313
318
  - (Files used for testing the project)
314
319
  - `tests`
315
- - (Unit tests for the project)
320
+ - `gui`
321
+ - (Unit tests for the GUI, aka the local version of the web app)
322
+ - `python`
323
+ - (Unit tests for the Python library and command-line application)
316
324
  - `CHANGELOG.md` (Updates since initial public release)
317
325
  - `CONTRIBUTING.md` (Guidelines and information for contributors to the project)
318
326
  - `DOCKERFILE` (Dockerfile for image containerising PSDI's data conversion service)
319
- - `LICENSE` (Apache Licence version 2.0)
327
+ - `LICENSE` (Apache License version 2.0)
320
328
  - `pyproject.toml` (Python project metadata and settings)
321
329
  - `README.md` (This file)
322
330
  - `requirements.txt` (Requirements for the web app deployment of this project)
323
- - `run_local.sh` (Helper script to run the web app locally)
324
331
 
325
332
  ## Requirements
326
333
 
@@ -468,6 +475,24 @@ options] [-s/--strict] [--nc/--no-check] [-q/--quiet] [-g/--log-file <log file n
468
475
 
469
476
  Call `psdi-data-convert -h` for details on each of these options.
470
477
 
478
+ Note that some requested conversions may involve ambiguous formats which share the same extension. In this case, the application will print a warning and list possible matching formats, with a disambiguating name that can be used to specify which one. For instance, the `c2x` converter can convert into two variants of the `pdb` format, and if you ask it to convert to `pdb` without specifying which one, you'll see:
479
+
480
+ ```
481
+ ERROR: Extension 'pdb' is ambiguous and must be defined by ID. Possible formats and their IDs are:
482
+ 9: pdb-0 (Protein Data Bank)
483
+ 259: pdb-1 (Protein Data Bank with atoms numbered)
484
+ ```
485
+
486
+ This provides the IDs ("9" and "259") and disambiguating names ("pdb-0" and "pdb-1") for the matching formats. Either can be used in the call to the converter, e.g.:
487
+
488
+ ```bash
489
+ psdi-data-conversion nacl.cif -t 9 -w c2x
490
+ # Or equivalently:
491
+ psdi-data-conversion nacl.cif -t pdb-0 -w c2x
492
+ ```
493
+
494
+ The "<format>-0" pattern can be used with any format, even if it's unambiguous, and will be interpreted as the first instance of the format in the database with valid conversions. Note that as the database expands in future versions and more valid conversions are added, these disambiguated names may change, so it is recommended to use the format's ID in scripts and with the library to ensure consistency between versions of this package.
495
+
471
496
  #### Requesting Information on Possible Conversions
472
497
 
473
498
  The script can also be used to get information on possible conversions by providing the `-l/--list` argument:
@@ -542,6 +567,8 @@ Where `filename` is the name of the file to convert (either fully-qualified or r
542
567
 
543
568
  See the method's documentation via `help(run_converter)` after importing it for further details on usage.
544
569
 
570
+ Note that as with running the application through the command-line, some extra care may be needed in the case that the input or output format is ambiguous - see the [Data Conversion](#data-conversion) section above for more details on this. As with running through the command-line, a format's ID or disambiguated name must be used in the case of ambiguity.
571
+
545
572
  #### `constants`
546
573
 
547
574
  This package defines most constants used in the package. It may be imported via:
@@ -596,54 +623,15 @@ pip install .'[gui]'
596
623
 
597
624
  If your system does not allow installation in this manner, it may be necessary to set up a virtual environment. See the instructions in the [command-line application installation](#installation) section above for how to do that, and then try to install again once you've set one up and activated it.
598
625
 
599
- If you've installed this repository from source, you can use the provided `run_local.sh` bash script to run the application. Otherwise (e.g. if you've installed from a wheel or PyPI), copy and paste the following into a script:
600
-
601
- ```bash
602
- #!/bin/bash
603
-
604
- # The envvar MAX_FILESIZE can be used to set the maximum allowed filesize in MB - 0 indicates no maximum
605
- if [ -z $MAX_FILESIZE ]; then
606
- export MAX_FILESIZE=0
607
- fi
608
-
609
- # The envvar MAX_FILESIZE_OB can be used to set the maximum allowed filesize in MB for the Open Babel converter - 0
610
- # indicates no maximum. This is currently set to 1 MB by default as the converter seems to hang above this limit (not
611
- # even allowing the process to be cancelled). This can be changed in the future if this is patched
612
- if [ -z $MAX_FILESIZE_OB ]; then
613
- export MAX_FILESIZE_OB=1
614
- fi
615
-
616
- # Logging control - "full" sets server-style logging, which is necessary to produce the output logs with the expected
617
- # names. This should not be changed, or else errors will occur
618
- export LOG_MODE=full
619
-
620
- # The level to log at. Leave blank for defaults, which logs at INFO level for user output and ERROR level for the server
621
- # log and stdout. If set to a different value here (e.g. DEBUG), all these channels will be set to that level
622
- export LOG_LEVEL=
623
-
624
- # The envvar SERVICE_MODE can be set to "true" to make this behave as if it's running as the public web service -
625
- # uncomment the following line to enable that
626
- # export SERVICE_MODE=true
627
-
628
- # Uncomment the following line to enable debug mode
629
- # export FLASK_ENV=development
630
-
631
- # Execute a local run of the application from the proper path
632
-
633
- PACKAGE_PATH=`python -c "import psdi_data_conversion; print(psdi_data_conversion.__path__[0])"`
634
- cd $PACKAGE_PATH/..
635
- python -m flask --app psdi_data_conversion/app.py run
636
- ```
637
-
638
- If desired, you can modify the environmental variables set in this script to modify the operation - see the comments on each for details.
639
-
640
626
  ### Running the App
641
627
 
642
- Run the `run_local.sh` script to start the server. You can then access the website by going to <http://127.0.0.1:5000> in a browser (this will also be printed in the terminal, and you can CTRL+click it there to open it in your default browser). Guidance for using the app is given on each page of it.
628
+ Once installed, the command-line script `psdi-data-convert-gui` will be made available, which can be called to start the server. You can then access the website by going to <http://127.0.0.1:5000> in a browser (this will also be printed in the terminal, and you can CTRL+click it there to open it in your default browser). Guidance for using the app is given on each page of it. When you're finished with the app, key CTRL+C in the terminal where you called the script to shut down the server, or, if the process was backgrounded, kill the appropriate process.
643
629
 
644
630
  In case of problems when using Chrome, try opening Chrome from the command line:
645
631
  open -a "Google Chrome.app" --args --allow-file-access-from-files
646
632
 
633
+ The local version has some customisable options for running it, which can can be seen by running `psdi-data-convert-gui --help`. Most of these are only useful for development, but one notable setting is `--max-file-size-ob`, which sets the maximum allowed filesize for conversions with the Open Babel converter in megabytes. This is set to 1 MB by default, since Open Babel has a known bug which causes it to hang indefinitely for some conversions over this size (such as from large `mmcif` files). This can be set to a higher value (or to 0 to disable the limit) if the user wishes to disable this safeguard.
634
+
647
635
  ## Extending Functionality
648
636
 
649
637
  The Python library and CLA are written to make it easy to extend the functionality of this package to use other file format converters. This can be done by downloading or cloning the project's source from it's GitHub Repository (https://github.com/PSDI-UK/psdi-data-conversion), editing the code to add your converter following the guidance in the "[Adding File Format Converters](https://github.com/PSDI-UK/psdi-data-conversion/blob/main/CONTRIBUTING.md#adding-file-format-converters)" section of CONTRIBUTING.md to integrate it with the Python code, and installing the modified package on your system via:
@@ -662,28 +650,140 @@ To test the CLA and Python library, install the optional testing requirements lo
662
650
 
663
651
  ```bash
664
652
  pip install .'[test]'
665
- pytest
653
+ pytest tests/python
666
654
  ```
667
655
 
668
656
  To test the local version of the web app, install the GUI testing requirements locally (which also include the standard GUI requirements and standard testing requirements), start the server, and test by executing the GUI test script:
669
657
 
670
658
  ```bash
671
659
  pip install .'[gui-test]'
672
- ./run_local.sh & # Start the server for the web app in the background
673
- cd tests/selenium
674
- ./run.sh
675
- kill %1 # Stop the web server - it may have a different job ID. If you don't know the job ID, you can alternatively call "fg" to bring the job to the foreground, then type CTRL+c to stop it
660
+ pytest tests/gui
661
+ ```
662
+
663
+ Both of these sets of tests can also be run together if desired through:
664
+
665
+ ```bash
666
+ pip install .'[gui-test]'
667
+ pytest
668
+ ```
669
+
670
+ ## Troubleshooting
671
+
672
+ This section presents solutions for commonly-encountered issues.
673
+
674
+ ### OSError: [Errno 24] Too many open files
675
+
676
+ You may see the error:
677
+
678
+ ```
679
+ OSError: [Errno 24] Too many open files
676
680
  ```
677
681
 
678
- ## Licencing
682
+ while running the command-line application, using the Python library, or running tests This error is caused by a program hitting the limit of the number of open filehandles allowed by the OS. This limit is typically set to 1024 on Linux systems and 256 on MacOS systems, and thus this issue occurs much more often on the latter. You can see what your current limit is by running the command:
683
+
684
+ ```bash
685
+ ulimit -a | grep "open files"
686
+ ```
687
+
688
+ This limit can be temporarily increased for the current terminal session by running the command:
689
+
690
+ ```bash
691
+ ulimit -n 1024 # Or another, higher number
692
+ ```
693
+
694
+ First, try increasing the limit and then redo the operation which caused this error to see if this resolves it. If this does, you can make this change permanent in a few ways, the easiest of which is to add this command to your `.bashrc` file so it will be set for every new terminal session.
695
+
696
+ If you see this error when the filehandle limit is already set to a high value such as 1024, this may indicate the presence of a bug in the project which causes a leaking of filehandles, so please open an issue about it, pasting the error you get and the details of your system, particularly including your current filehandle limit.
697
+
698
+ ### Errors running c2x or Atomsk converters
699
+
700
+ We provide support for the c2x and Atomsk converters by packing binaries which support common Linux and MacOS platforms with this project, but we cannot guarantee universal support for these binaries. In particular, they may rely on dynamically-linked libraries which aren't installed on your system.
701
+
702
+ Look through the error message you received for messages such as "Library not loaded" or "no such file", and see if they point to the name of a library which you can try installing. For instance, if you see that it's searching for `libquadmath.0.dylib` but not finding it, you can try installing this library. In this case, this library can be installed through apt with:
703
+
704
+ ```bash
705
+ sudo apt install libquadmath0
706
+ ```
707
+
708
+ or through brew via:
709
+
710
+ ```bash
711
+ brew install gcc
712
+ ```
713
+
714
+ Alternatively, you can run your own versions of the `c2x` and `atomsk` binaries with this project. Compile them yourself however you wish - see the projects at https://github.com/codenrx/c2x and https://github.com/pierrehirel/atomsk and follow their instructions to build a binary on your system. Once you've done so, add the binary to your `$PATH`, and this project will pick that up and use it in preference to the prepackaged binary.
715
+
716
+ On the other hand, it's possible that an error of this sort will occur if you have a non-working binary of one of these converters in your `$PATH`. If this might be the case, you can try removing it and see if the prepackaged binary works for you, or else recompile it to try to fix errors.
717
+
718
+ ### A supported conversion fails
719
+
720
+ Here we'll go over some of the most common reasons that a supported conversion might fail, and what can be done to fix the issue.
721
+
722
+ #### Input file is malformatted or corrupt
723
+
724
+ Usually if there is a problem with the input file, the error message you receive should indicate some difficulty reading it. If the error message indicates this might be the issue, try the following:
725
+
726
+ Check the validity of the input file, ideally using another tool which can read in a file of its type, and confirm that it can be read successfully. This doesn't guarantee that the file is valid, as some utilities are tolerant to some formatting errors, but if you get an error here, then you know the issue is with the file. If the file can be read by another utility, see if the conversion you're attempting is supported by another converter - it might be that the file has a negligible issue that another converter is able to ignore.
727
+
728
+ If you've confirmed that the input file is malformatted or corrupt, see if it's possible to regenerate it or fix it manually. There may be a bug in the program which generated it - if this is under your control, check the format's documentation to help fix it. Otherwise, you can see if you can use the format's documentation as a guide to manually fix the file.
729
+
730
+ #### Input file's format is misidentified
731
+
732
+ If you've followed the steps in the previous section and confirmed that the input file is valid, but you're still having issues with it, one possibility is that this application is misidentifying the file's format. This can happen if you've given the file an extension which isn't expected of its format, or in rare cases where an extension is shared by multiple formats.
733
+
734
+ To remedy this, try explicitly specifying the format, rather than letting the application guess it from the extension. You can see all supported formats by running `psdi-data-convert -l`, and then get details on one with `psdi-data-convert -l -f <format>` to confirm that it's the correct format. You can then call the conversion script with the argument `-f <format>`, or within Python make a call to the library with `run_converter(..., from_format=<format>)` to specify the format.
735
+
736
+ `<format>` here can be the standard extension of the format (in the case of unambiguous extensions), its ID, or its disambiguated name. To give an example which explains what each of these are, let's say you have an MDL MOL file you wish to convert to XYZ, so you get information about it and possible converters with `psdi-data-convert -l -f mol -t xyz`:
737
+
738
+ ```base
739
+ $ psdi-data-convert -l -f mol
740
+ WARNING: Format 'mol' is ambiguous and could refer to multiple formats. It may be necessary to explicitly specify which
741
+ you want to use when calling this script, e.g. with '-f mol-0' - see the disambiguated names in the list below:
742
+
743
+ 18: mol-0 (MDL MOL)
744
+ 216: mol-1 (MOLDY)
745
+
746
+ 20: xyz (XYZ cartesian coordinates)
747
+
748
+ The following registered converters can convert from mol-0 to xyz:
749
+
750
+ Open Babel
751
+ c2x
752
+
753
+ For details on input/output flags and options allowed by a converter for this conversion, call:
754
+ psdi-data-convert -l <converter name> -f mol-0 -t xyz
755
+
756
+ The following registered converters can convert from mol-1 to xyz:
757
+
758
+ Atomsk
759
+
760
+ For details on input/output flags and options allowed by a converter for this conversion, call:
761
+ psdi-data-convert -l <converter name> -f mol-1 -t xyz
762
+ ```
763
+
764
+ This output indicates that the application is aware of two formats which share the `mol` extension: MDL MOL and MOLDY. It lists the ID, disambiguated name, and description of each: ID `18` and disambiguated name `mol-0` for MDL MOL, and ID `216` and disambiguated name `mol-1` for MOLDY. The XYZ format, on the other hand, is unambiguous, and only lists the standard extension for it as its disambiguated name (although `xyz-0` will be accepted without error as well).
765
+
766
+ The program then lists converters which can handle the requested conversion, revealing a potential pitfall: The Open Babel and c2x converters can convert from MDL MOL to XYZ, which the Atomsk converter can convert from MOLDY to XYZ. If you don't specify which format you're converting from, the script might assume you meant to use the other one, if that's the only one compatible with the converter you've requested (or with the default converter, Open Babel, if you didn't explicitly request one). So to be careful here, it's best to specify this input format unambiguously.
767
+
768
+ Since in this example you have an MDL MOL file, you would use `-f 18` or `-f mol-0` to explicitly specify it in the command-line, or similarly provide one of these to the `from_format` argument of `run_converter` within Python. The application will then properly handle it, including alerting you if you request a conversion that isn't supported by your requested converter (e.g. if you request a conversion of this MDL MOL file to XYZ with Atomsk).
769
+
770
+ Important note: The disambiguated name is generated dynamically and isn't stored in the database, and in rare cases may change for some formats in future versions of this application which expand support to more formats and conversions. For uses which require forward-compatibility with future versions of this application, the ID should be used instead.
771
+
772
+ #### Other known issues
773
+
774
+ Through testing, we've identified some other conversion issues, which we list here:
775
+
776
+ - Open Babel will indefinitely hang when attempting to convert large files (more than ~1 MB) of certain types (such as `mmcif`). This is an issue with the converter itself and not our application, which we hope will be fixed in a future version. If this occurs, the job will have to be forcibly terminated. CTRL+C will fail to terminate it, but it can be stopped with CTRL+Z, then terminated with `kill %N`, where N is the number listed beside the job when it is stopped (usually 1). The conversion should then be attempted with another supported converter.
777
+
778
+ ## Licensing
679
779
 
680
780
  This project is provided under the Apache License version 2.0, the terms of which can be found in the file `LICENSE`.
681
781
 
682
- This project redistributes compiled binaries for the Atomsk and c2x converters. These are both licenced under the
782
+ This project redistributes compiled binaries for the Atomsk and c2x converters. These are both licensed under the
683
783
  GNU General Public License version 3 and are redistributed per its terms. Any further redistribution of these binaries,
684
- including redistribution of this project as a whole, including them, must also follow the terms of this licence.
784
+ including redistribution of this project as a whole, including them, must also follow the terms of this license.
685
785
 
686
- This requires conspicuously displaying notice of this licence, providing the text of of the licence (provided here in
786
+ This requires conspicuously displaying notice of this license, providing the text of of the license (provided here in
687
787
  the files `psdi_data_conversion/bin/LICENSE_C2X` and `psdi_data_conversion/bin/LICENSE_ATOMSK`), and appropriately
688
788
  conveying the source code for each of these. Their respective source code may be found at:
689
789
 
@@ -1,12 +1,12 @@
1
1
  psdi_data_conversion/__init__.py,sha256=urMsTqsTHTch1q4rMT9dgGnrvdPFMP9B8r-6Kr8H5sE,404
2
- psdi_data_conversion/app.py,sha256=LMVK3R8Ooz0vj8Pb4N5MkKQDOb91i5FhH5aHty5RDDM,8998
3
- psdi_data_conversion/constants.py,sha256=jh9-EqTt3E5I5H5axpANjQI_JuVeqsACoUVHuw6RX8Y,7351
4
- psdi_data_conversion/converter.py,sha256=f5Uos26M3KfDFQ-zoEOJVs0lEASkYRQyXrR0B9MhDmU,22906
5
- psdi_data_conversion/database.py,sha256=WMOdz6T2b2XuE_d-Ex_v5oRi-TDEHcku_yT04en4GoE,44274
2
+ psdi_data_conversion/app.py,sha256=Ef8gXALojMrHaEWp1VJqEJ9CqYPWnXKFyObzlorNy9A,13253
3
+ psdi_data_conversion/constants.py,sha256=JWYC2gXsEi6bBl_NdEBh5nLZ7qX2LZZV_DutfEHJ8qo,7390
4
+ psdi_data_conversion/converter.py,sha256=wgh13gzkzouEyEg1cXZ8KfIUXerXFF8VU-a4WgSO9ZE,23185
5
+ psdi_data_conversion/database.py,sha256=CmV-yPBMa1Y9Uq_6h_C_dgIq9yi-qRvZCXlnLHNfxd4,55170
6
6
  psdi_data_conversion/dist.py,sha256=Ju6BcEuLrB738diTbK6HX6ZBiZ40Ctq1exj44nSCMlE,2292
7
7
  psdi_data_conversion/file_io.py,sha256=UXxNxTl_EabQ96UrLp4b38ctkYhXV_KIHJeTuyRBVpM,8857
8
8
  psdi_data_conversion/log_utility.py,sha256=WIgQp0pMsFtJJZKgIhStBNnjLzC6gEIodQAoXji5ht0,8789
9
- psdi_data_conversion/main.py,sha256=90vCObJSG7Xxi_iyx2awskOt8RT9_Erel9rT8uz0n78,38203
9
+ psdi_data_conversion/main.py,sha256=LBGTj2K_tx_YSPe-9I2biN0XEUpEiCnqhHa0kox0kHU,41791
10
10
  psdi_data_conversion/security.py,sha256=wjdrMre29TpkF2NqrsXJ5sschSAnDzqLYTLUcNR21Qw,902
11
11
  psdi_data_conversion/bin/LICENSE_ATOMSK,sha256=-Ay6SFTAf9x-OaRAiOgMNoutfUMLHx5jQQA1HqZ6p7I,34886
12
12
  psdi_data_conversion/bin/LICENSE_C2X,sha256=-Ay6SFTAf9x-OaRAiOgMNoutfUMLHx5jQQA1HqZ6p7I,34886
@@ -16,9 +16,9 @@ psdi_data_conversion/bin/mac/atomsk,sha256=pqExRdkR8NSqSasHZjE74R_CiM6Dkr_yvfyak
16
16
  psdi_data_conversion/bin/mac/c2x,sha256=dI-bBoQ6uqc6KMYKJaq0x7ejJgOf_wysTxQA5BrF8AY,2581960
17
17
  psdi_data_conversion/converters/__init__.py,sha256=15Ldt06eyZ0bgNPB4qg419U0Zcjt6TUCTzjCBo8EIzM,210
18
18
  psdi_data_conversion/converters/atomsk.py,sha256=_V33me1e4HW0-YXvdE-z6PdwtSK2gYV6QZf5d8aPqH4,1523
19
- psdi_data_conversion/converters/base.py,sha256=QTXOWEkrKmQvBANEmJilNtI3i0fRFkbVetVtYk8zXxw,35535
20
- psdi_data_conversion/converters/c2x.py,sha256=RjvOUxrb7R09s58p1kQKhICVUvozNJc4bvhQGkk89Ng,1498
21
- psdi_data_conversion/converters/openbabel.py,sha256=BGEXPdOfm5QNO67gymH8PrmW88pMvXF8_9fosz3_Bcg,13150
19
+ psdi_data_conversion/converters/base.py,sha256=K6Zwfj6VHC_aEnuflqjGf0xF5kX24v_smTAQiyE0pzs,35892
20
+ psdi_data_conversion/converters/c2x.py,sha256=9eSg85-FEhZ4Xj_yEAmbmq75Zg8woaplSfvDygZVbb0,1539
21
+ psdi_data_conversion/converters/openbabel.py,sha256=Y0PN5BwlZaekUrt8dM6IuEtrvpmXYgvwnkLFlENDNoE,13223
22
22
  psdi_data_conversion/scripts/atomsk.sh,sha256=N_NMO5q8sI3Lt1TerC-xcKbMI0kfscAudy5UAbY0uR0,804
23
23
  psdi_data_conversion/scripts/c2x.sh,sha256=F48jhgtgouKKZDQ9p6tCCNBN5bPuidBq2GcTurdWzQc,770
24
24
  psdi_data_conversion/static/content/accessibility.htm,sha256=5mzlPM-d5KBoOuvuBTmer5QEI9lWQSd7FPH1KFn_7B0,14187
@@ -26,7 +26,7 @@ psdi_data_conversion/static/content/convert.htm,sha256=sw4U8yQQXNYXl2ruYPfg6qIMo
26
26
  psdi_data_conversion/static/content/convertato.htm,sha256=IQ2PUodkWdZbbuvctDs2Ow0tEJXvhrnzhvGYDF7Oiiw,3669
27
27
  psdi_data_conversion/static/content/convertc2x.htm,sha256=mqMscskUPS1JtV1ABl91kH_JyCmK7ORFjD1n2_MZFz4,3669
28
28
  psdi_data_conversion/static/content/documentation.htm,sha256=1GiEjlDCP0kJ3CKkx3l1gPxeOPp4bdOP95MPKx4dzvI,5557
29
- psdi_data_conversion/static/content/download.htm,sha256=J_KwSKjWJJj9-v4ouGuddG_LIMmWzo7Zn7CjiJleUrw,4163
29
+ psdi_data_conversion/static/content/download.htm,sha256=DQKWEuq_Bjv2TyV6DnPXnHrSOBvGYRHOU-m6YOwfsh4,4727
30
30
  psdi_data_conversion/static/content/feedback.htm,sha256=fZrhn4Egs9g6ygqPzV6ZG9ndYK02VdALNVNXRsZ716k,1788
31
31
  psdi_data_conversion/static/content/header-links.html,sha256=7B2bHa7dLfSZ4hPMvVJ3kR0niVAOO3FtHJo0K6m1oP4,693
32
32
  psdi_data_conversion/static/content/psdi-common-footer.html,sha256=CM9F6AXM1LVMLvTP51xTzOicEelSXlyXQyN-BjrQAJk,3933
@@ -66,21 +66,22 @@ psdi_data_conversion/static/javascript/convert.js,sha256=UfrqaO7VNiLeed-d92O_jpK
66
66
  psdi_data_conversion/static/javascript/convert_common.js,sha256=o4KHIlYToC3AfOa8MTzbPaNDjPEesyvUy50AVgTRxvI,11000
67
67
  psdi_data_conversion/static/javascript/convertato.js,sha256=faSvfm9HWT3i8piqEDq8OfekiPo3jCV2vKT_VjdzwmE,3555
68
68
  psdi_data_conversion/static/javascript/convertc2x.js,sha256=TTqC9B2FD_q3RcPE2GJh6yAhocQyJLRfQsbSWzm2g3U,3550
69
- psdi_data_conversion/static/javascript/data.js,sha256=davPYzCif_28FRpToQOYsoBgxpy6EMPWnBGQw0xKZrw,6111
70
- psdi_data_conversion/static/javascript/format.js,sha256=phFbU087hTJAvELR2nbLYZH9VQQDjmgBglknHSuF1ZI,20751
69
+ psdi_data_conversion/static/javascript/data.js,sha256=JNJLzMLyC6ke2vDzK-dgeMH2Z4LmB6R3DQ4ykMzjnK0,6376
70
+ psdi_data_conversion/static/javascript/format.js,sha256=S-ovNuqOSfS-RYDhFxxCDpTKFKdxOWAYvJuzeEPcXB0,21260
71
71
  psdi_data_conversion/static/javascript/load_accessibility.js,sha256=jTLfmubEmko2bJ_MKWMkmYxUeBxotozc-0-ua69CYJo,3265
72
72
  psdi_data_conversion/static/javascript/psdi-common.js,sha256=I0QqGQ7l_rA4KEfenQTfPc-uOXXp8sxMh_NHL3EkFm4,6231
73
73
  psdi_data_conversion/static/javascript/report.js,sha256=BHH5UOhXJtB6J_xk_y6woquNKt5W9hCrQapxKtGG1eA,12470
74
74
  psdi_data_conversion/static/styles/format.css,sha256=HKgKkepZtY0NCtKm4JlsuchDL_vymBQ0pRnmfVE8L30,3097
75
- psdi_data_conversion/static/styles/psdi-common.css,sha256=bexxnnJHoq5WllRqrxmUz4GxveFWaidHXee-sA2sU6Q,17220
76
- psdi_data_conversion/templates/index.htm,sha256=or75tQreQY6FI1M8bFDcDESdL3-mHLaIn80QC4933zI,5783
75
+ psdi_data_conversion/static/styles/psdi-common.css,sha256=09VY-lldoZCrohuqPKnd9fvDget5g9ybi6uh13pYeY0,17249
76
+ psdi_data_conversion/templates/index.htm,sha256=wuHECSzTwVwmaGg55RnYunsaSFCYBmxf6_P4OygTNEQ,6824
77
77
  psdi_data_conversion/testing/__init__.py,sha256=Xku7drtLTYLLPsd403eC0LIEa_iohVifyeyAITy2w7U,135
78
- psdi_data_conversion/testing/constants.py,sha256=TnUtsNmlFSzBrCWrCOp0TfKz33s8OxzHEj5LlsKJQEE,215
79
- psdi_data_conversion/testing/conversion_callbacks.py,sha256=oSq93JdTz7KvLVirq_Ibaglg1ZxzuoKuWMv9DS2ykgs,18709
80
- psdi_data_conversion/testing/conversion_test_specs.py,sha256=EVP6Y6SsVLwR7JuSK4MOdZM-MGuJpMh6WxielKAn7Vo,18944
81
- psdi_data_conversion/testing/utils.py,sha256=yU6f39rokvgAmaXr-v1LGuOvUk2GrnEb0SNAPjfc8AM,23365
82
- psdi_data_conversion-0.0.36.dist-info/METADATA,sha256=B61tLrWmSCJjjtQ6AMug5uZB3Gvms2rdgM10lCjr3UU,38308
83
- psdi_data_conversion-0.0.36.dist-info/WHEEL,sha256=TJPnKdtrSue7xZ_AVGkp9YXcvDrobsjBds1du3Nx6dc,87
84
- psdi_data_conversion-0.0.36.dist-info/entry_points.txt,sha256=o5y9mx-xX_koYtoAEB4acBG8lUkmhu8TlJhYD7axDS0,69
85
- psdi_data_conversion-0.0.36.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
86
- psdi_data_conversion-0.0.36.dist-info/RECORD,,
78
+ psdi_data_conversion/testing/constants.py,sha256=BtIafruSobZ9cFY0VW5Bu209eiftnN8b3ObouZBrFQU,521
79
+ psdi_data_conversion/testing/conversion_callbacks.py,sha256=FeRcS06ynLzQOWwqf2QiIR5EaM-icKGolvrVI88ZOOg,18858
80
+ psdi_data_conversion/testing/conversion_test_specs.py,sha256=vsNj2YKX1ZYglAPVN4smuLn6fjZKYMfaxuwkyLDj39g,24878
81
+ psdi_data_conversion/testing/gui.py,sha256=I44QeLztcnt-37Zf2nOvrqjo_y6a40VhjehdVwGejW0,18708
82
+ psdi_data_conversion/testing/utils.py,sha256=ZuwB5rEW-eB-38xQb3ZvJpSzuI4ocbFUNAc-uiC4vW4,26134
83
+ psdi_data_conversion-0.0.38.dist-info/METADATA,sha256=eIHXKGbPOKrQgYQGA5uIrP9xGgaSNoec6UN_KulmhBE,48116
84
+ psdi_data_conversion-0.0.38.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
85
+ psdi_data_conversion-0.0.38.dist-info/entry_points.txt,sha256=xL7XTzaPRr2E67WhOD1M1Q-76hB8ausQlnNiHzuZQPA,123
86
+ psdi_data_conversion-0.0.38.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
87
+ psdi_data_conversion-0.0.38.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.21.1
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,2 +1,3 @@
1
1
  [console_scripts]
2
2
  psdi-data-convert = psdi_data_conversion.main:main
3
+ psdi-data-convert-gui = psdi_data_conversion.app:main