Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mrdna
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tbgl
tools
mrdna
Commits
bd544678
Commit
bd544678
authored
5 years ago
by
cmaffeo2
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
ecfc517b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+51
-1
51 additions, 1 deletion
README.md
with
51 additions
and
1 deletion
README.md
+
51
−
1
View file @
bd544678
# Multi-Resolution DNA simulations
# Multi-Resolution DNA simulations
A Python3 package that makes it easy to run simulations of DNA nanostructures.
The multi-resolution approach provides the benefits of coarse-grained modeling,
while resulting in a high-resolution structure suitable for atomistic simulations.
Alternatively, the package can be used to initialize simulations using the oxDNA model.
...
## Dependencies
*
Linux operating system
*
g++ >= 4.8
*
[
CUDA toolkit
](
https://developer.nvidia.com/cuda-toolkit
)
>= 6
*
[
ARBD
](
http://bionano.physics.illinois.edu/arbd
)
simulation engine
*
Python >= 3.5
*(some users report problems installing mdanalysis; miniconda or conda are recommended)*
*
numpy >= 1.14
*
scipy >= 1.1
*
mdanalysis >= 0.18
*
cadnano >= 2.5.2.1
*
appdirs >= 1.4
*
[
oxDNA
](
https://dna.physics.ox.ac.uk/index.php/Main_Page
)
(
optional
)
## Installation
First make sure you have the cuda-toolkit installed.
First download ARBD through a web browser.
The following (untested) script can then be modified and used to install mrdna.
Please report issues to
[
Chris Maffeo
](
mailto:cmaffeo2@illinois.edu
)
.
```
bash
# Customize the following
BUILD_DIR
=
/path/to/build-dir
export
CUDA_PATH
=
/path/to/cuda-toolkit
# Unpack and build arbd
cd
$BUILD_DIR
mv
~/Downloads/arbd
*
.tar.gz
.
tar
-xzf
arbd
*
.tar.gz
cd
arbd/src
make
-j
cd
../../
# Setup python dependencies (you may want to set up a virtual environement)
conda
install
numpy>
=
1.14 scipy>
=
1.1 appdirs
>=
1.4
conda
install
-c
conda-forge mdanalysis>
=
0.18
pip
install
cadnano
>=
2.5.2.1
git clone https://gitlab.engr.illinois.edu/tbgl/tools/mrdna
cd
mrdna
python setup.py
install
cd
..
# Finally update your bashrc so that your shell can find the ARBD binary
echo
"PATH=
$BUILD_DIR
/arbd/src:
\$
PATH"
>>
~/.bashrc
source
~/.bashrc
```
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment