SAMSON Forum
    • Login
    • Search
    • Recent
    • Tags
    • Popular
    • SAMSON Connect
    • Get SAMSON
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month
    • O

      SAMSON crashes when I try to select a section of my DNA origami
      SAMSON Extensions • • Olivia

      2
      0
      Votes
      2
      Posts
      1624
      Views

      DmitriyMarin

      Dear @Olivia ,

      The Adenita extension has been developed and is supported by external developers ( @Elisa ). And Adenita is in an alpha stage and might have some issues. We plan on porting this extension to the most recent SAMSON version.

      You can also copy your question to the specific topic: Adenita - User Support.

    • J

      GROMACS Wizard doesn't show
      SAMSON • • James 0

      2
      0
      Votes
      2
      Posts
      2011
      Views

      Admin

      Hi James, thanks for reporting this. We sent you an email to determine the issue.

    • L

      Creating bonds
      SAMSON • • Leonard

      2
      0
      Votes
      2
      Posts
      3373
      Views

      Admin

      No way for now, thanks for the idea :).

    • A

      samson core exe is not runing in windows 7
      Getting started • • AMIT

      2
      0
      Votes
      2
      Posts
      2120
      Views

      Stephane

      Hello, could you please tell us which graphics card you have? This seems to indicate a GPU issue.

    • E

      Problem with deletions
      SAMSON • • Emmanuel

      2
      0
      Votes
      2
      Posts
      2333
      Views

      DmitriyMarin

      Thank you @Emmanuel for reporting these issues. We have fixed them - the Elements will be updated automatically once you launch SAMSON.

    • E

      Problem with surface creation...
      SAMSON • • Emmanuel

      2
      0
      Votes
      2
      Posts
      2267
      Views

      DmitriyMarin

      Dear @Emmanuel ,

      Thanks for reporting this issue! It's now fixed, and the fix will be available with SAMSON 2020 R2, which will be deployed in a few days.

    • E

      Problem with water selection
      SAMSON • • Emmanuel

      2
      0
      Votes
      2
      Posts
      2142
      Views

      DmitriyMarin

      Dear @Emmanuel ,

      Thanks for reporting this issue! It's now fixed, and the fix will be available with SAMSON 2020 R2, which will be deployed in a few days.

    • E

      Crash with SAMSON
      SAMSON • • Emmanuel

      2
      0
      Votes
      2
      Posts
      2307
      Views

      Admin

      Thanks for reporting this bug! It's now fixed, and the fix will be available with SAMSON 2020 R2, which will be deployed this monday (may 11, 2020).

    • C

      Solved How do you notify an app that the active document is closed ?
      Apps • • CLEMENT

      2
      1
      Votes
      2
      Posts
      2932
      Views

      Yassine

      Hi Clement,

      To listen to the document closed signal I connect my nodes to a custom signal like this:

      SB_FOR(SBNode* node, atomIndexer) node->connectBaseSignalToSlot(this, SB_SLOT(&SENormalModesAnalysisApp::onBaseEvent));

      Then, in my onBaseEvent function I catch the NodeEraseBegin event which corresponds to the signal emitted when the document is closed or the nodes erased.

      void SENormalModesAnalysisApp::onBaseEvent(SBBaseEvent* event) { if (event->getType() == SBBaseEvent::NodeEraseBegin) { //disconnet the connected nodes SB_FOR(SBNode* node, atomIndexer) {node->disconnectBaseSignalFromSlot(this, SB_SLOT(&SENormalModesAnalysisApp::onBaseEvent)); } //....// }

      Remember to disconnect the connected nodes.
      Hope I answered your question,
      Yassine

    • A

      AutoDock Vina installation
      SAMSON Extensions • • Arturo

      2
      0
      Votes
      2
      Posts
      2057
      Views

      Admin

      Hello Arturo,

      thanks for your interest in SAMSON!
      The AutoDock Vina element has been deprecated as it was offering limited functionality (only one ligand at a time). It is still possible to use the AutoDock Vina Extended element for free for 30 days (no credit card needed) and it can do more, including pre-minimization of ligands and docking entire libraries.
      Can you please ask your teacher to contact us at contact@samson-connect.net so we can find the best solution to provide access to all students?

      Thanks,
      Stephane

    • E

      Adenita does not show up in SAMSON interface
      SAMSON • • Enze

      2
      0
      Votes
      2
      Posts
      2409
      Views

      Admin

      Adenita needs older versions of SAMSON because it hasn’t been updated yet (you can see this on the element page). You need to reinstall SAMSON and check the box “Install older versions” to install 0.8.5. Also, please check the requirements on the element page.

    • Rahad

      Problem during minimization and molecular docking
      SAMSON • • Rahad

      2
      0
      Votes
      2
      Posts
      2357
      Views

      DmitriyMarin

      Thank you @Rahad !
      Do you mean the minimization step in the AutoDock Vina Extended module? What error does it show?

      As for ligand libraries, AutoDock Vina Extended module supports libraries with ligands in formats that can be opened in SAMSON, including .pdb, .mol2, .sdf, .xyz, etc, but not .mol and .pdbqt for now. You do not need to import all the ligands in SAMSON, you just need to provide the path to the folder with a ligand library.

    • J

      SAMSON-Core.command file missing in MacOS
      Getting started • • Jean-Luc

      2
      0
      Votes
      2
      Posts
      2325
      Views

      J

      Hi,
      Sorry for the issue the file was not shipped with the SDK.
      See : https://documentation.samson-connect.net/developers/latest/page_installation.html
      To launch SAMSON just execute SAMSON-Core after doing the step inside the previous link.

      If the file is absent you can create SAMSON-Core.command with the following content

      #!/bin/sh

      echo "saving context"
      SAVED_DYLD_LIBRARY_PATH=$DYLD_LIBRARY_PATH
      SAVED_DYLD_FRAMEWORK_PATH=$DYLD_FRAMEWORK_PATH
      SAVED_DYLD_FALLBACK_LIBRARY_PATH=$DYLD_FALLBACK_LIBRARY_PATH

      echo "launching SAMSON-Core"
      script_dir=$(cd "$(dirname "$0")";pwd)
      cd "$script_dir"

      echo "You need to add ~/Qt5.12.5/5.12.5/clang_64/lib folder in your DYLD_FRAMEWORK_PATH or edit this file"

      #export DYLD_FRAMEWORK_PATH=~/Qt5.12.5/5.12.5/clang_64/lib or the one corresponding to your setup
      export DYLD_LIBRARY_PATH=$script_dir
      export DYLD_FALLBACK_LIBRARY_PATH=$script_dir

      ./SAMSON-Core #available flags --disablenetwork /--import /--logconsole /--logfile "file" /--logdefaultfile

      echo "restoring context"
      export DYLD_LIBRARY_PATH=$SAVED_DYLD_LIBRARY_PATH
      export DYLD_FRAMEWORK_PATH=$SAVED_DYLD_FRAMEWORK_PATH
      export DYLD_FALLBACK_LIBRARY_PATH=$SAVED_DYLD_FALLBACK_LIBRARY_PATH

      then execute chmod +x SAMSON-Core.command
      then execute chmod +x SAMSON-Core

      Jocelyn

    • E

      [User Support] Adenita
      SAMSON Extensions • • Elisa

      2
      2
      Votes
      2
      Posts
      2359
      Views

      O

      I have a structure I would like to alter a bit using Adenita, but whenever I try to select it, it becomes non-responsive and crashes. I've tried using a .json file and a .pdb file and neither is capable of having parts selected. I tried on two different computers, one with a quad-core and one with a 6-core and it still crashed. Is there a way I can perform this on my build? Or is this a software issue that others experienced?

      OS: Windows 10
      Ver: SAMSON 0.8.5

    • P

      How to connect two atoms by a new bond?
      Getting started • • Prokop

      2
      0
      Votes
      2
      Posts
      2471
      Views

      DmitriyMarin

      Hello @Prokop ,

      To connect two atoms with a bond, use the Add editor: press on the first atom and draw a bond to the second one and then release. Please see the gif below:
      0_1583572262919_Connecting with a bond.gif