PASTA-ELN / pasta-eln

PASTA-ELN with new frontend
https://pasta-eln.github.io/pasta-eln/
Other
7 stars 2 forks source link

PyPI version GitHub version PyPi build Verify Linux install Documentation building Linting MyPy

PASTA-ELN | The favorite ELN for experimental scientists

:warning: Users: all documentation can be found at Github-pages

This page / area is for developers and contains some helpful information for them


Developers: Windows

How to start Pasta ELN

Installation location:

Reinstall /retry windows installation

Create an installer using pyInstaller


Developers: Linux

Installation location:

Restart installation

rm .pastaELN.json pastaELN.log
rm -rf pastaELN/PastasExampleProject pastaELN/StandardOperatingProcedures
sudo snap stop couchdb
sudo snap remove couchdb

Test couchDB running

Notes on all systems

Run Pasta-ELN directly from commandline without installation


How to write code

How to write small python programs that do things

Backend

from pasta_eln.backend import Pasta
pasta = Pasta()
viewProj = pasta.db.getView('viewDocType/x0')
projID1  = [i['id'] for i in viewProj if 'PASTA' in i['value'][0]][0]
pasta.changeHierarchy(projID1)
print(pasta.outputHierarchy())

Frontend

For testing WIDGETS put this code into "pasta_eln/test.py":

from PySide6.QtWidgets import QApplication, QMainWindow
from .backend import Backend
from .communicate import Communicate
from .widgetDetails import Details

class MainWindow(QMainWindow):
  def __init__(self):
    super().__init__()
    self.backend = Backend()
    comm = Communicate(self.backend)
    widget = Details(comm)
    self.setCentralWidget(widget)
    comm.changeDetails.emit('m-a23019163b9c4fccb4edaab0feb2b5ee')

app = QApplication()
window = MainWindow()
window.show()
app.exec()

and execute "python -m pasta_eln.test"

For testing DIALOGS put this code into "pasta_eln/test.py":

import sys
from PySide6.QtWidgets import QApplication
from .GUI.form import Form
from .backend import Backend
from .guiCommunicate import Communicate

app = QApplication(sys.argv)
backend = Backend()
comm = Communicate(backend)
doc = backend.db.getDoc("m-3a43570c4fd84b1ab81a8863ae058fb0")
dialog = Form(comm, doc)
dialog.show()
sys.exit(app.exec())

and execute "python -m pasta_eln.test"


Profiling

Begin...

  from cProfile import Profile
  from pstats import SortKey, Stats
  with Profile() as profile:

End...

  (Stats(profile).strip_dirs().sort_stats(SortKey.CUMULATIVE).print_stats(100)) #end cProfile

For example: to profile the start of the program

  def startMain() -> None:
    """
    Main function to start GUI. Extra function is required to allow starting in module fashion
    """
    from cProfile import Profile
    from pstats import SortKey, Stats
    with Profile() as profile:
      app, window = mainGUI()
      window.show()
    (Stats(profile).strip_dirs().sort_stats(SortKey.CUMULATIVE).print_stats(100)) #end cProfile
    # if app:
    #   app.exec()

Debugging on a conventional install: linux

Running pytests (3.12)

General notes