https://github.com/metaphorme/split_pdpqt
Split pdbqt file which contains many models into single file.
https://github.com/metaphorme/split_pdpqt
Last synced: 8 months ago
JSON representation
Split pdbqt file which contains many models into single file.
- Host: GitHub
- URL: https://github.com/metaphorme/split_pdpqt
- Owner: Metaphorme
- License: mit
- Created: 2022-10-15T18:31:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-04T12:24:19.000Z (over 3 years ago)
- Last Synced: 2025-05-30T07:38:28.418Z (about 1 year ago)
- Language: Go
- Size: 11.7 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# split_pdpqt
Split pdbqt file which contains many models into single file.
## Requirements
- [Go](https://go.dev/)
## Build
```bash
git clone https://github.com/Metaphorme/split_pdpqt.git # Get split_pdpqt
cd split_pdpqt
go build split.go # Build
```
## Examples
```bash
./split -inputFile BBEDRL.xaa.pdbqt -outputDir output/
./split -inputDir input/ -outputDir output/
./split -inputFile BBEDRL.xaa.pdbqt -inputDir input/ -outputDir output/
```
## Commands
```bash
Usage of ./split:
-inputDir string
The Directory of pdbqt file which contains many models. (default "NoInputDir")
-inputFile string
The pdbqt file which contains many models. (default "NoInputFile")
-outputDir string
The output directory to save output models. (default "./output/")
```
## License
[MIT License](https://github.com/Metaphorme/split_pdpqt/blob/main/LICENSE)