RNA 3D Structure generation
1.1K
Containerized RNA sequence to structure generation and optimization pipeline for folding, with additional analysis, and visualization.
sanjayk741/aptamer3d:latest
--rmInstall Docker Desktop or Docker Engine:
Verify installation:
docker --version
docker pull sanjayk741/aptamer3d:latest
The container writes all outputs directly into your current local directory using Docker volume mounting.
Run:
docker run --rm \
-v "$(pwd):/work" \
sanjayk741/aptamer3d:latest \
"GCGCUUCGCC"
Run:
docker run --rm \
-v "$(pwd):/work" \
sanjayk741/aptamer3d:latest \
"GCGCUUCGCC"
Run:
docker run --rm `
-v "${PWD}:/work" `
sanjayk741/aptamer3d:latest `
"GCGCUUCGCC"
All generated files appear automatically in:
./output/
mkdir rna_test
cd rna_test
mkdir rna_test
cd rna_test
docker run --rm \
-v "$(pwd):/work" \
sanjayk741/aptamer3d:latest \
"GCGCUUCGCC"
docker run --rm `
-v "${PWD}:/work" `
sanjayk741/aptamer3d:latest `
"GCGCUUCGCC"
ls output/
dir output
Provide RNA sequence as argument:
"GCGCUUCGCC"
Example:
docker run --rm \
-v "$(pwd):/work" \
sanjayk741/aptamer3d:latest \
"AUGCGGAUCCGAU"
The container:
--rm)No manual cleanup required.
This command:
-v "$(pwd):/work"
maps your current local directory into the container:
| Host Machine | Container |
|---|---|
| Current Folder | /work |
The container writes results internally to:
/work/output/Job_<timestamp>/
which automatically appears on your host machine as:
./output/Job_<timestamp>/
If output files are owned by root:
sudo chown -R $USER:$USER output
Start Docker Desktop or Docker daemon before running commands.
Use PowerShell instead of CMD for best compatibility.
MIT License
If you use this pipeline in research, please cite the relevant underlying tools and algorithms used in the workflow.
Sanjay K Mohanty
Content type
Image
Digest
sha256:c3c13887b…
Size
429.7 MB
Last updated
4 months ago
docker pull sanjayk741/aptamer3d