-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Brandon Duane Walker <[email protected]>
- Loading branch information
1 parent
07e3016
commit c4842b6
Showing
17 changed files
with
104 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
utils/pre-process/structure-change/extract-ligand-protein-tool/build-docker.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/bash | ||
|
||
version=$(<VERSION) | ||
docker build . -t polusai/extract-ligand-protein-tool:${version} |
85 changes: 85 additions & 0 deletions
85
...pre-process/structure-change/extract-ligand-protein-tool/extract_ligand_protein_0.1.0.cwl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
#!/usr/bin/env cwl-runner | ||
cwlVersion: v1.0 | ||
|
||
class: CommandLineTool | ||
|
||
label: A tool that employs OpenMM to extract ligands and protein from a PDB file | ||
|
||
doc: |- | ||
A tool that employs OpenMM to extract ligands and protein from a PDB file | ||
|
||
baseCommand: ["python", "-m", "polus.mm.utils.extract_ligand_protein"] | ||
|
||
hints: | ||
DockerRequirement: | ||
dockerPull: polusai/extract-ligand-protein-tool@sha256:38416f3d020c26869028c6ba66a243882d0b3c5885c79ff68355912ec5768fc1 | ||
|
||
inputs: | ||
input_pdb_path: | ||
label: Input pdb file path | ||
doc: |- | ||
Input pdb file path | ||
Type: string | ||
File type: input | ||
Accepted formats: pdb | ||
Example file: https://github.com/bioexcel/biobb_structure_utils/raw/master/biobb_structure_utils/test/data/utils/cat_protein.pdb | ||
type: File | ||
format: | ||
- edam:format_1476 | ||
inputBinding: | ||
prefix: --input_pdb_path | ||
|
||
output_pdb_path: | ||
label: Output pdb file path | ||
doc: |- | ||
Output pdb file path | ||
Type: string | ||
File type: output | ||
Accepted formats: pdb | ||
Example file: https://github.com/bioexcel/biobb_structure_utils/raw/master/biobb_structure_utils/test/reference/utils/ref_cat_pdb.pdb | ||
type: string | ||
format: | ||
- edam:format_1476 | ||
inputBinding: | ||
prefix: --output_pdb_path | ||
default: system.pdb | ||
|
||
output_pdb_ligand_path: | ||
label: Output pdb ligand file path | ||
doc: |- | ||
Output pdb ligand file path | ||
Type: string | ||
File type: output | ||
Accepted formats: sdf | ||
type: string | ||
format: | ||
- edam:format_1476 | ||
inputBinding: | ||
prefix: --output_pdb_ligand_path | ||
default: ligand_system.pdb | ||
|
||
outputs: | ||
output_pdb_path: | ||
label: Output pdb file path | ||
doc: |- | ||
Output pdb file path | ||
type: File | ||
outputBinding: | ||
glob: $(inputs.output_pdb_path) | ||
format: edam:format_1476 | ||
|
||
output_pdb_ligand_path: | ||
label: Output ligand pdb file path | ||
doc: |- | ||
Output ligand pdb file path | ||
Use optional File? since ligand may not exist in complex | ||
type: File? | ||
outputBinding: | ||
glob: $(inputs.output_pdb_ligand_path) | ||
format: edam:format_1476 | ||
|
||
$namespaces: | ||
edam: https://edamontology.org/ | ||
|
||
$schemas: | ||
- https://raw.githubusercontent.com/edamontology/edamontology/master/EDAM_dev.owl |
6 changes: 3 additions & 3 deletions
6
utils/extract-ligand-protein-plugin/ict.yml → ...hange/extract-ligand-protein-tool/ict.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
specVersion: "0.1.0" | ||
name: extract_ligand_protein | ||
version: 0.1.0 | ||
container: extract-ligand-protein-plugin | ||
container: extract-ligand-protein-tool | ||
entrypoint: | ||
title: extract_ligand_protein | ||
description: A tool that employs OpenMM to extract ligands and protein from a PDB file | ||
author: Data Scientist | ||
contact: [email protected] | ||
author: Brandon Walker | ||
contact: [email protected] | ||
repository: | ||
documentation: | ||
citation: | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.