Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile-mordred
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV HOME=/code
WORKDIR ${HOME}

# install our requirements. RDKit is present in base container
RUN pip install pip install mordredcommunity==2.0.4 \
RUN pip install mordredcommunity==2.0.4 \
im-standardize-molecule==0.1.0 \
im-data-manager-job-utilities==1.1.1

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-nextflow
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:buster
FROM debian:bullseye
LABEL maintainer="Tim Dudgeon<tdudgeon@informaticsmatters.com>"
# Note: When run by the Data Manager the uid and gid
# will be set according to the Project we're running against.
Expand Down
3 changes: 2 additions & 1 deletion Dockerfile-oddt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ FROM informaticsmatters/vs-rdkit-base:latest
# for execution, and so we must ensure the code runs
# as any user.

RUN apt-get -y install git &&\
RUN apt-get -y update &&\
apt-get -y install git &&\
apt-get clean

ENV PYTHONPATH=/code
Expand Down
4 changes: 4 additions & 0 deletions Dockerfile-rdock
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
FROM informaticsmatters/rdock:2013.1
LABEL maintainer="Tim Dudgeon<tdudgeon@informaticsmatters.com>"

USER 0

RUN yum -y update &&\
yum -y install python-jinja2 &&\
yum clean all
Expand All @@ -9,3 +11,5 @@ RUN pip install im-data-manager-job-utilities==1.0.1

COPY prepare_rdock.py rdock_*.sh /code/
RUN chmod 755 /code/prepare_rdock.py

USER rdock
6 changes: 3 additions & 3 deletions data-manager/im-virtual-screening.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ jobs:
top:
title: Keep best n records
type: integer
minValue: 1
minimum: 1
tests:
simple-sort:
inputs:
Expand Down Expand Up @@ -634,7 +634,7 @@ jobs:
top:
title: Keep best n records
type: integer
minValue: 1
minimum: 1
tests:
group-and-sort:
inputs:
Expand Down Expand Up @@ -1922,7 +1922,7 @@ jobs:
title: Size of chunks to split
type: integer
default: 1000
minValue: 100
minimum: 100
tests:
simple-execution:
inputs:
Expand Down
5 changes: 2 additions & 3 deletions data-manager/rdkit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -918,8 +918,7 @@ jobs:
- pipe
idColumn:
title: Index (text) or name (SDF) to use for the ID field
type:
- string
type: string
pattern: "^[A-Za-z0-9_\\.\\- ]+$"
readRecords:
title: Number of records to read field names
Expand Down Expand Up @@ -1963,7 +1962,7 @@ jobs:
title: Size of chunks to split
type: integer
default: 1000
minValue: 100
minimum: 100
tests:
simple-execution:
inputs:
Expand Down