Skip to content

Commit c1b9c2a

Browse files
Brandon Duane Walkermisterbrandonwalker
authored andcommitted
add example of id error
1 parent cbdfdb6 commit c1b9c2a

File tree

7 files changed

+5
-206
lines changed

7 files changed

+5
-206
lines changed

.github/workflows/docker_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
rename_residues_mol, combine_structure,
2727
remove_terminal_residue_name_prefixes, molgan,
2828
pdbbind_refined, onionnet-sfct, smina, pdbfixer,
29-
fix_pdb_atom_column, extract_protein, extract_ligand_protein, generate_conformers] # No username for pdbind_refined
29+
fix_pdb_atom_column, extract_protein, generate_conformers] # No username for pdbind_refined
3030
# skip data/ and cwl_adapters/file_format_conversions/biosimspace/
3131
runs-on: [ubuntu-latest]
3232

cwl_adapters/extract_ligand_protein.cwl

Lines changed: 0 additions & 85 deletions
This file was deleted.

cwl_adapters/topology_check.cwl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ outputs:
5050
loadContents: true
5151
outputEval: |
5252
${
53+
// check if self[0] exists
54+
if (!self[0]) {
55+
return null;
56+
}
5357
// Read the contents of the file
5458
const lines = self[0].contents.split("\n");
5559
// Read boolean value from the first line

docker/dockerBuild.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ sudo docker build --no-cache --pull -f Dockerfile_onionnet-sfct -t polusai/onion
3434
sudo docker build --no-cache --pull -f Dockerfile_smina -t cyangnyu/smina .
3535
sudo docker build --no-cache --pull -f Dockerfile_pdbfixer -t ndonyapour/pdbfixer .
3636
sudo docker build --no-cache --pull -f Dockerfile_extract_protein -t ndonyapour/extract_protein .
37-
sudo docker build --no-cache --pull -f Dockerfile_extract_ligand_protein -t mrbrandonwalker/extract_ligand_protein .
3837
sudo docker build --no-cache --pull -f Dockerfile_fix_pdb_atom_column -t ndonyapour/fix_pdb_atom_column .
3938
sudo docker build --no-cache --pull -f Dockerfile_generate_conformers -t ndonyapour/generate_conformers .
4039

dockerPull.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,5 @@ docker pull mrbrandonwalker/diffdock_gpu
2828
docker pull mrbrandonwalker/diffdock_cpu
2929
docker pull ndonyapour/pdbfixer
3030
docker pull ndonyapour/extract_protein
31-
docker pull mrbrandonwalker/extract_ligand_protein
3231
docker pull ndonyapour/fix_pdb_atom_column
3332
docker pull ndonyapour/generate_conformers

examples/scripts/Dockerfile_extract_ligand_protein

Lines changed: 0 additions & 7 deletions
This file was deleted.

examples/scripts/extract_ligand_protein.py

Lines changed: 0 additions & 111 deletions
This file was deleted.

0 commit comments

Comments
 (0)