Skip to content

Commit

Permalink
update User_Manual.md to use "param.msp"
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre Lanrezac committed Nov 3, 2024
1 parent a94f129 commit 2a388c8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions doc/User_Manual.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,17 +89,17 @@ Example of `.msp` file for BioSpring:

### without interaction

After generating model.nc file and setting simulation parameters model.msp and you can launch BioSpring using this command:
After generating model.nc file and setting simulation parameters param.msp and you can launch BioSpring using this command:

biospring -s model.nc -c model.msp
biospring -s model.nc -c param.msp

Be carefull that you have set constraints and output parameters to get results. Indeed, without constraints, there is no reason that the spring
network comes out the initial equilibriumn, and without output parameters, you won't be able to get any results.

Or run the Docker image:

docker run --init -v ./:/data ghcr.io/lbt-cnrs/biospring \
biospring -s /data/model.nc -c /data/model.msp
biospring -s /data/model.nc -c /data/param.msp

### with interaction via VMD using MDDriver

Expand All @@ -113,12 +113,12 @@ We advice you to try BioSpring with MDDriver and VMD to understand how this inte

To run BioSpring with VMD and MDDriver, start by launching the BioSpring tools with these MDDriver parameters.

biospring -c model.nc -s model.msp --wait --port 3000 --log model.log
biospring -c model.nc -s param.msp --wait --port 3000 --log model.log

Or run the Docker image:

docker run -p 3000:3000 --init -v ./:/data ghcr.io/lbt-cnrs/biospring \
biospring -s /data/model.nc -c /data/model.msp --wait --port 3000
biospring -s /data/model.nc -c /data/param.msp --wait --port 3000

#### Lauching VMD
Start the VMD program (double click on its icon or launch from the command line).
Expand Down
6 changes: 3 additions & 3 deletions example/001_GKinase/param.msp
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ pdbtrajectory.enable = 0
pdbtrajectory.path = traj.pdb
pdbtrajectory.frequency = 1

csvtrajectory.enable = 0
csvtrajectory.path = sample.csv
csvtrajectory.frequency = 1
csvsampling.enable = 0
csvsampling.path = sample.csv
csvsampling.frequency = 1

# -----------------------------------
spring.enable = 1
Expand Down

0 comments on commit 2a388c8

Please sign in to comment.