@prefix this: <https://w3id.org/np/RAT9ikS37ApvccPsI6FJ8y4cLWVkm7ycrURJH0fMeiOlQ> .
@prefix sub: <https://w3id.org/np/RAT9ikS37ApvccPsI6FJ8y4cLWVkm7ycrURJH0fMeiOlQ/> .
@prefix np: <http://www.nanopub.org/nschema#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix pav: <http://purl.org/pav/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix npx: <http://purl.org/nanopub/x/> .
sub:Head {
  this: np:hasAssertion sub:assertion ;
    np:hasProvenance sub:provenance ;
    np:hasPublicationInfo sub:pubinfo ;
    a np:Nanopublication .
}
sub:assertion {
  <https://about.workflowhub.eu> <http://schema.org/name> "WorkflowHub" ;
    <http://schema.org/url> "https://about.workflowhub.eu/" ;
    a <http://schema.org/Organization> .
  <https://about.workflowhub.eu/Workflow-RO-Crate> <http://schema.org/name> "Workflow RO-Crate Profile" ;
    <http://schema.org/version> "0.2.0" ;
    a <http://schema.org/CreativeWork> .
  <https://orcid.org/0000-0001-6401-6229_> <http://schema.org/name> "Javier Conejero" ;
    a <http://schema.org/Person> .
  <https://orcid.org/0000-0003-2388-0744> <http://schema.org/name> "MaƂgorzata Wolniewicz" ;
    a <http://xmlns.com/foaf/0.1/Agent> .
  <https://ror.org/http://compss.bsc.es/> <http://schema.org/identifier> "http://compss.bsc.es/" ;
    <http://schema.org/name> "COMPSs" ;
    <http://schema.org/url> "http://compss.bsc.es/" ;
    a <http://schema.org/ComputerLanguage> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/#enrichment_service-account-enrichment> <http://schema.org/name> "service-account-enrichment" ;
    a <http://xmlns.com/foaf/0.1/Agent> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/> pav:importedBy <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/author> <https://orcid.org/0000-0001-6401-6229_> ;
    <http://schema.org/contentSize> 41338757 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/ros/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/crate/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:55.115634+00:00" ;
    <http://schema.org/dateModified> "2024-03-05 12:23:16.184954+00:00" ;
    <http://schema.org/datePublished> "2023-09-06 08:59:55.115634+00:00" ;
    <http://schema.org/description> """# Drug Synergies Screening Workflow

## Table of Contents

- [Drug Synergies Screening Workflow](#drug-synergies-screening-workflow)
  - [Table of Contents](#table-of-contents)
  - [Description](#description)
  - [Contents](#contents)
    - [Building Blocks](#building-blocks)
    - [Workflows](#workflows)
    - [Resources](#resources)
    - [Tests](#tests)
  - [Instructions](#instructions)
    - [Local machine](#local-machine)
      - [Requirements](#requirements)
      - [Usage steps](#usage-steps)
    - [MareNostrum 4](#marenostrum-4)
      - [Requirements in MN4](#requirements-in-mn4)
      - [Usage steps in MN4](#usage-steps-in-mn4)
  - [License](#license)
  - [Contact](#contact)

## Description

This pipeline simulates a drug screening on personalised cell line models. It automatically builds Boolean models of interest, then uses cell lines data (expression, mutations, copy number variations) to personalise them as MaBoSS models. Finally, this pipeline simulates multiple drug intervention on these MaBoSS models, and lists drug synergies of interest.

The workflow uses the following building blocks, described in order of execution:

1. Build model from species
2. Personalise patient
3. MaBoSS
4. Print drug results

For details on individual workflow steps, see the user documentation for each building block.

[`GitHub repository`](https://github.com/PerMedCoE/drug-synergies-workflow&gt;)

## Contents

### Building Blocks

The ``BuildingBlocks`` folder contains the script to install the
Building Blocks used in the Drug Synergies Workflow.

### Workflows

The ``Workflow`` folder contains the workflows implementations.

Currently contains the implementation using PyCOMPSs.

### Resources

The ``Resources`` folder contains a small dataset for testing purposes.

### Tests

The ``Tests`` folder contains the scripts that run each Building Block
used in the workflow for a small dataset.
They can be executed individually *without PyCOMPSs installed* for testing
purposes.

## Instructions

### Local machine

This section explains the requirements and usage for the Drug Synergies Workflow in a laptop or desktop computer.

#### Requirements

- [`permedcoe`](https://github.com/PerMedCoE/permedcoe) package
- [PyCOMPSs](https://pycompss.readthedocs.io/en/stable/Sections/00_Quickstart.html)
- [Singularity](https://sylabs.io/guides/3.0/user-guide/installation.html)

#### Usage steps

1. Clone this repository:

  ```bash
  git clone https://github.com/PerMedCoE/drug-synergies-workflow.git
  ```

2. Install the Building Blocks required for the COVID19 Workflow:

  ```bash
  drug-synergies-workflow/BuildingBlocks/./install_BBs.sh
  ```

3. Get the required Building Block images from the project [B2DROP](https://b2drop.bsc.es/index.php/f/444350):

  - Required images:
      - PhysiCell-COVID19.singularity
      - printResults.singularity
      - MaBoSS_sensitivity.singularity
      - FromSpeciesToMaBoSSModel.singularity

  The path where these files are stored **MUST be exported in the `PERMEDCOE_IMAGES`** environment variable.

  &gt; :warning: **TIP**: These containers can be built manually as follows (be patient since some of them may take some time):
  1. Clone the `BuildingBlocks` repository
     ```bash
     git clone https://github.com/PerMedCoE/BuildingBlocks.git
     ```
  2. Build the required Building Block images
     ```bash
     cd BuildingBlocks/Resources/images
     sudo singularity build PhysiCell-COVID19.sif PhysiCell-COVID19.singularity
     sudo singularity build printResults.sif printResults.singularity
     sudo singularity build MaBoSS_sensitivity.sif MaBoSS_sensitivity.singularity
     sudo singularity build FromSpeciesToMaBoSSModel.sif FromSpeciesToMaBoSSModel.singularity
     cd ../../..
     ```

**If using PyCOMPSs in local PC** (make sure that PyCOMPSs in installed):

4. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflows/PyCOMPSs
   ```

5. Execute `./run.sh`
  &gt; **TIP**: If you want to run the workflow with a different dataset, please update the `run.sh` script setting the `dataset` variable to the new dataset folder and their file names.

### MareNostrum 4

This section explains the requirements and usage for the Drug Synergies Workflow in the MareNostrum 4 supercomputer.

#### Requirements in MN4

- Access to MN4

All Building Blocks are already installed in MN4, and the Drug Synergies Workflow available.

#### Usage steps in MN4

1. Load the `COMPSs`, `Singularity` and `permedcoe` modules

   ```bash
   export COMPSS_PYTHON_VERSION=3
   module load COMPSs/3.1
   module load singularity/3.5.2
   module use /apps/modules/modulefiles/tools/COMPSs/libraries
   module load permedcoe
   ```

   &gt; **TIP**: Include the loading into your `${HOME}/.bashrc` file to load it automatically on the session start.

   This commands will load COMPSs and the permedcoe package which provides all necessary dependencies, as well as the path to the singularity container images (`PERMEDCOE_IMAGES` environment variable) and testing dataset (`DRUG_SYNERGIES_WORKFLOW_DATASET` environment variable).

2. Get a copy of the pilot workflow into your desired folder

   ```bash
   mkdir desired_folder
   cd desired_folder
   get_drug_synergies_workflow
   ```

3. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflow/PyCOMPSs
   ```

4. Execute `./launch.sh`

  This command will launch a job into the job queuing system (SLURM) requesting 2 nodes (one node acting half master and half worker, and other full worker node) for 20 minutes, and is prepared to use the singularity images that are already deployed in MN4 (located into the `PERMEDCOE_IMAGES` environment variable). It uses the dataset located into `../../Resources/data` folder.

  &gt; :warning: **TIP**: If you want to run the workflow with a different dataset, please edit the `launch.sh` script and define the appropriate dataset path.

  After the execution, a `results` folder will be available with with Drug Synergies Workflow results.

## License

[Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)

## Contact



This software has been developed for the [PerMedCoE project](https://permedcoe.eu/), funded by the European Commission (EU H2020 [951773](https://cordis.europa.eu/project/id/951773)).

![](https://permedcoe.eu/wp-content/uploads/2020/11/logo_1.png \"PerMedCoE\")
""" , """# Drug Synergies Screening Workflow

## Table of Contents

- [Drug Synergies Screening Workflow](#drug-synergies-screening-workflow)
  - [Table of Contents](#table-of-contents)
  - [Description](#description)
  - [Contents](#contents)
    - [Building Blocks](#building-blocks)
    - [Workflows](#workflows)
    - [Resources](#resources)
    - [Tests](#tests)
  - [Instructions](#instructions)
    - [Local machine](#local-machine)
      - [Requirements](#requirements)
      - [Usage steps](#usage-steps)
    - [MareNostrum 4](#marenostrum-4)
      - [Requirements in MN4](#requirements-in-mn4)
      - [Usage steps in MN4](#usage-steps-in-mn4)
  - [License](#license)
  - [Contact](#contact)

## Description

This pipeline simulates a drug screening on personalised cell line models. It automatically builds Boolean models of interest, then uses cell lines data (expression, mutations, copy number variations) to personalise them as MaBoSS models. Finally, this pipeline simulates multiple drug intervention on these MaBoSS models, and lists drug synergies of interest.

The workflow uses the following building blocks, described in order of execution:

1. Build model from species
2. Personalise patient
3. MaBoSS
4. Print drug results

For details on individual workflow steps, see the user documentation for each building block.

[`GitHub repository`](https://github.com/PerMedCoE/drug-synergies-workflow&gt;)

## Contents

### Building Blocks

The ``BuildingBlocks`` folder contains the script to install the
Building Blocks used in the Drug Synergies Workflow.

### Workflows

The ``Workflow`` folder contains the workflows implementations.

Currently contains the implementation using PyCOMPSs.

### Resources

The ``Resources`` folder contains a small dataset for testing purposes.

### Tests

The ``Tests`` folder contains the scripts that run each Building Block
used in the workflow for a small dataset.
They can be executed individually *without PyCOMPSs installed* for testing
purposes.

## Instructions

### Local machine

This section explains the requirements and usage for the Drug Synergies Workflow in a laptop or desktop computer.

#### Requirements

- [`permedcoe`](https://github.com/PerMedCoE/permedcoe) package
- [PyCOMPSs](https://pycompss.readthedocs.io/en/stable/Sections/00_Quickstart.html)
- [Singularity](https://sylabs.io/guides/3.0/user-guide/installation.html)

#### Usage steps

1. Clone this repository:

  ```bash
  git clone https://github.com/PerMedCoE/drug-synergies-workflow.git
  ```

2. Install the Building Blocks required for the COVID19 Workflow:

  ```bash
  drug-synergies-workflow/BuildingBlocks/./install_BBs.sh
  ```

3. Get the required Building Block images from the project [B2DROP](https://b2drop.bsc.es/index.php/f/444350):

  - Required images:
      - PhysiCell-COVID19.singularity
      - printResults.singularity
      - MaBoSS_sensitivity.singularity
      - FromSpeciesToMaBoSSModel.singularity

  The path where these files are stored **MUST be exported in the `PERMEDCOE_IMAGES`** environment variable.

  &gt; :warning: **TIP**: These containers can be built manually as follows (be patient since some of them may take some time):
  1. Clone the `BuildingBlocks` repository
     ```bash
     git clone https://github.com/PerMedCoE/BuildingBlocks.git
     ```
  2. Build the required Building Block images
     ```bash
     cd BuildingBlocks/Resources/images
     sudo singularity build PhysiCell-COVID19.sif PhysiCell-COVID19.singularity
     sudo singularity build printResults.sif printResults.singularity
     sudo singularity build MaBoSS_sensitivity.sif MaBoSS_sensitivity.singularity
     sudo singularity build FromSpeciesToMaBoSSModel.sif FromSpeciesToMaBoSSModel.singularity
     cd ../../..
     ```

**If using PyCOMPSs in local PC** (make sure that PyCOMPSs in installed):

4. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflows/PyCOMPSs
   ```

5. Execute `./run.sh`
  &gt; **TIP**: If you want to run the workflow with a different dataset, please update the `run.sh` script setting the `dataset` variable to the new dataset folder and their file names.

### MareNostrum 4

This section explains the requirements and usage for the Drug Synergies Workflow in the MareNostrum 4 supercomputer.

#### Requirements in MN4

- Access to MN4

All Building Blocks are already installed in MN4, and the Drug Synergies Workflow available.

#### Usage steps in MN4

1. Load the `COMPSs`, `Singularity` and `permedcoe` modules

   ```bash
   export COMPSS_PYTHON_VERSION=3
   module load COMPSs/3.1
   module load singularity/3.5.2
   module use /apps/modules/modulefiles/tools/COMPSs/libraries
   module load permedcoe
   ```

   &gt; **TIP**: Include the loading into your `${HOME}/.bashrc` file to load it automatically on the session start.

   This commands will load COMPSs and the permedcoe package which provides all necessary dependencies, as well as the path to the singularity container images (`PERMEDCOE_IMAGES` environment variable) and testing dataset (`DRUG_SYNERGIES_WORKFLOW_DATASET` environment variable).

2. Get a copy of the pilot workflow into your desired folder

   ```bash
   mkdir desired_folder
   cd desired_folder
   get_drug_synergies_workflow
   ```

3. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflow/PyCOMPSs
   ```

4. Execute `./launch.sh`

  This command will launch a job into the job queuing system (SLURM) requesting 2 nodes (one node acting half master and half worker, and other full worker node) for 20 minutes, and is prepared to use the singularity images that are already deployed in MN4 (located into the `PERMEDCOE_IMAGES` environment variable). It uses the dataset located into `../../Resources/data` folder.

  &gt; :warning: **TIP**: If you want to run the workflow with a different dataset, please edit the `launch.sh` script and define the appropriate dataset path.

  After the execution, a `results` folder will be available with with Drug Synergies Workflow results.

## License

[Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)

## Contact



This software has been developed for the [PerMedCoE project](https://permedcoe.eu/), funded by the European Commission (EU H2020 [951773](https://cordis.europa.eu/project/id/951773)).

![](https://permedcoe.eu/wp-content/uploads/2020/11/logo_1.png \"PerMedCoE\")""" ;
    <http://schema.org/encodingFormat> "application/ld+json" ;
    <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/78e37aaa-926d-4a03-b835-9761e5c250d5> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/8a0897c2-8eff-4790-bac4-6b29479dc217> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/939d8834-ab5e-4dae-858f-4dc29464dca6> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/bd9c36a5-1910-4e9c-a74d-6a16c0a4bec3> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/1ec1efa3-054b-4cc6-b06b-a2d0326d7dfb> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/dab03da9-6f4d-4a21-bbec-439a907d7b97> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/fa4dfed0-adf2-4c22-8b0d-f95e0efbec0b> ;
    <http://schema.org/identifier> "https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad" ;
    <http://schema.org/isBasedOn> "https://github.com/PerMedCoE/drug-synergies-workflow" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/mainEntity> "Workflow/PyCOMPSs/run.sh" ;
    <http://schema.org/name> "Research Object Crate for PerMedCoE Drug Synergy" ;
    <http://schema.org/url> "https://workflowhub.eu/workflows/479/ro_crate?version=1" ;
    a <http://purl.org/wf4ever/ro#ResearchObject> , <http://purl.org/wf4ever/roevo#LiveRO> , <http://schema.org/Dataset> ;
    <https://www.w3.org/ns/iana/link-relations/relation#cite-as> "Javier Conejero. \"Research Object Crate for PerMedCoE Drug Synergy.\" ROHub. Sep 06 ,2023. https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad." .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/46379747-2240-4167-8bab-2deab6decab5> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/062ee024-e0b7-43af-be26-77ec31e94bb9> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/3f0e3090-ca7e-4cfd-bb4b-2a0b0fd2ed7a> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/4242e632-5e7f-4532-93bc-159b21e92b4a> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/98431cde-dbeb-4d23-a614-63e252a373bd> ;
    <http://schema.org/name> "data" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/66c44a5e-0727-4667-b868-dafa772c0a33> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/1ece3eec-38e5-4140-a677-cb905a0b6cb5> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/794f6066-94f3-4eb1-943a-0e46e48d27fa> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/8c925c69-f249-4477-964b-734bd0157131> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/d0fbc637-146c-4d81-97af-00cd95ec1692> ;
    <http://schema.org/name> "src" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/78e37aaa-926d-4a03-b835-9761e5c250d5> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/fd63033f-ee5b-42c7-9177-98c634fec03c> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/a551d6e7-6d83-493e-b18b-76a085f1f96f> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/a64bdbbc-05ea-4f60-8c51-9679fbce26a2> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/e00cd2fc-e208-40bd-8128-33ac97eebd9e> ;
    <http://schema.org/name> "BuildingBlocks" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/8a0897c2-8eff-4790-bac4-6b29479dc217> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/46379747-2240-4167-8bab-2deab6decab5> ;
    <http://schema.org/name> "Resources" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/939d8834-ab5e-4dae-858f-4dc29464dca6> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/2bc1a7dc-a3e0-4819-9bba-5c47b9ec537b> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/38c4e5ac-ddf5-4ca7-9efb-c8610686327c> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/7e9943ba-f08c-4176-9943-c4b7c739746a> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/8ca49483-617b-47f7-8f6a-f5061a0648c2> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/99f209fd-1409-45fd-9003-c4be7fe0deb7> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/ede95598-0c03-45db-b667-802fc33a1666> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/ff01fad8-983f-4915-bbcd-bb23704689b0> ;
    <http://schema.org/name> "Tests" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/bd9c36a5-1910-4e9c-a74d-6a16c0a4bec3> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/cf012660-57f9-4ff1-aa21-c514a14892e4> ;
    <http://schema.org/name> "Workflow" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/cf012660-57f9-4ff1-aa21-c514a14892e4> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/66c44a5e-0727-4667-b868-dafa772c0a33> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/08dfe3af-ce53-48ea-910b-31e06328aba7> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/41deb7c8-6b36-481e-9a3a-c47a70b56df0> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/d9f38986-7753-486d-aa09-bacf33643dbb> ;
    <http://schema.org/name> "PyCOMPSs" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/folders/fd63033f-ee5b-42c7-9177-98c634fec03c> <http://schema.org/hasPart> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/cb26b8ff-a3a7-4b78-967d-3ef31184b642> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/e1404702-1a21-4bbd-81bf-c467650425d5> , <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/eaac98ec-5a60-4019-aa2b-2e66c63cb493> ;
    <http://schema.org/name> "from_local" ;
    a <http://purl.org/wf4ever/wf4ever#Folder> , <http://schema.org/Dataset> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/062ee024-e0b7-43af-be26-77ec31e94bb9> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 41737701 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/062ee024-e0b7-43af-be26-77ec31e94bb9/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.324426+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:59.764154+00:00" ;
    <http://schema.org/encodingFormat> "application/x-tar" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "data_celllines.tar.gz" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.324426+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/08dfe3af-ce53-48ea-910b-31e06328aba7> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 1265 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/08dfe3af-ce53-48ea-910b-31e06328aba7/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.328533+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:01.555101+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "launch.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.328533+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/1ec1efa3-054b-4cc6-b06b-a2d0326d7dfb> <http://schema.org/about> "https://ror.org/https://workflowhub.eu/workflows/479?version=1" ;
    <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 25003 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/1ec1efa3-054b-4cc6-b06b-a2d0326d7dfb/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.338351+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:08.480006+00:00" ;
    <http://schema.org/encodingFormat> "text/html" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "ro-crate-preview.html" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.338351+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/CreativeWork> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/1ece3eec-38e5-4140-a677-cb905a0b6cb5> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 2478 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/1ece3eec-38e5-4140-a677-cb905a0b6cb5/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.332459+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:03.513196+00:00" ;
    <http://schema.org/encodingFormat> "text/x-python" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "utils.py" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.332459+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/2bc1a7dc-a3e0-4819-9bba-5c47b9ec537b> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 903 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/2bc1a7dc-a3e0-4819-9bba-5c47b9ec537b/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.142248+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:58.889455+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "1.b_build_model_from_sif.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.142248+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/38c4e5ac-ddf5-4ca7-9efb-c8610686327c> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 2418 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/38c4e5ac-ddf5-4ca7-9efb-c8610686327c/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.139326+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:57.695885+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "2_run_personalize_patient_bb.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.139326+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/3f0e3090-ca7e-4cfd-bb4b-2a0b0fd2ed7a> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 387 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/3f0e3090-ca7e-4cfd-bb4b-2a0b0fd2ed7a/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.144348+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:59.363388+00:00" ;
    <http://schema.org/encodingFormat> "text/csv" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "Sub_genes.csv" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.144348+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/41deb7c8-6b36-481e-9a3a-c47a70b56df0> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 36 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/41deb7c8-6b36-481e-9a3a-c47a70b56df0/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.329235+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:01.892207+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "clean.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.329235+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/4242e632-5e7f-4532-93bc-159b21e92b4a> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 10 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/4242e632-5e7f-4532-93bc-159b21e92b4a/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.325471+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:00.923864+00:00" ;
    <http://schema.org/encodingFormat> "text/csv" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "genes_target.csv" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.325471+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/794f6066-94f3-4eb1-943a-0e46e48d27fa> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 4272 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/794f6066-94f3-4eb1-943a-0e46e48d27fa/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.330321+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:02.333170+00:00" ;
    <http://schema.org/encodingFormat> "text/x-python" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "uc2.py" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.330321+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/7e9943ba-f08c-4176-9943-c4b7c739746a> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 706 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/7e9943ba-f08c-4176-9943-c4b7c739746a/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.138560+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:57.490403+00:00" ;
    <http://schema.org/encodingFormat> "text/markdown" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "README.md" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.138560+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/8c925c69-f249-4477-964b-734bd0157131> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 488 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/8c925c69-f249-4477-964b-734bd0157131/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.331021+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:02.546757+00:00" ;
    <http://schema.org/encodingFormat> "text/x-python" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "helpers.py" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.331021+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/8ca49483-617b-47f7-8f6a-f5061a0648c2> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 98 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/8ca49483-617b-47f7-8f6a-f5061a0648c2/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.141518+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:58.686045+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "clean.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.141518+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/98431cde-dbeb-4d23-a614-63e252a373bd> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 25 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/98431cde-dbeb-4d23-a614-63e252a373bd/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.145105+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:59.539090+00:00" ;
    <http://schema.org/encodingFormat> "text/csv" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "genes_druggable.csv" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.145105+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/99f209fd-1409-45fd-9003-c4be7fe0deb7> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 827 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/99f209fd-1409-45fd-9003-c4be7fe0deb7/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.140779+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:58.476812+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "4_print_drug_results.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.140779+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/a551d6e7-6d83-493e-b18b-76a085f1f96f> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 331 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/a551d6e7-6d83-493e-b18b-76a085f1f96f/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.334854+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:04.483060+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "uninstall_BBs.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.334854+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/a64bdbbc-05ea-4f60-8c51-9679fbce26a2> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 625 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/a64bdbbc-05ea-4f60-8c51-9679fbce26a2/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.334180+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:04.291099+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "install_BBs.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.334180+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/cb26b8ff-a3a7-4b78-967d-3ef31184b642> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 424 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/cb26b8ff-a3a7-4b78-967d-3ef31184b642/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.336706+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:04.894199+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "uninstall_BBs.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.336706+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/d0fbc637-146c-4d81-97af-00cd95ec1692> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 4727 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/d0fbc637-146c-4d81-97af-00cd95ec1692/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.331737+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:02.974463+00:00" ;
    <http://schema.org/encodingFormat> "text/x-python" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "final.py" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.331737+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/d9f38986-7753-486d-aa09-bacf33643dbb> dct:conformsTo "https://bioschemas.org/profiles/ComputationalWorkflow/1.0-RELEASE/" ;
    <http://schema.org/author> <https://orcid.org/0000-0001-6401-6229_> ;
    <http://schema.org/contentSize> "1083" ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/d9f38986-7753-486d-aa09-bacf33643dbb/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0001-6401-6229_> ;
    <http://schema.org/dateCreated> "2023-05-23 12:36:45+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:08.817029+00:00" ;
    <http://schema.org/description> """# Drug Synergies Screening Workflow

## Table of Contents

- [Drug Synergies Screening Workflow](#drug-synergies-screening-workflow)
  - [Table of Contents](#table-of-contents)
  - [Description](#description)
  - [Contents](#contents)
    - [Building Blocks](#building-blocks)
    - [Workflows](#workflows)
    - [Resources](#resources)
    - [Tests](#tests)
  - [Instructions](#instructions)
    - [Local machine](#local-machine)
      - [Requirements](#requirements)
      - [Usage steps](#usage-steps)
    - [MareNostrum 4](#marenostrum-4)
      - [Requirements in MN4](#requirements-in-mn4)
      - [Usage steps in MN4](#usage-steps-in-mn4)
  - [License](#license)
  - [Contact](#contact)

## Description

This pipeline simulates a drug screening on personalised cell line models. It automatically builds Boolean models of interest, then uses cell lines data (expression, mutations, copy number variations) to personalise them as MaBoSS models. Finally, this pipeline simulates multiple drug intervention on these MaBoSS models, and lists drug synergies of interest.

The workflow uses the following building blocks, described in order of execution:

1. Build model from species
2. Personalise patient
3. MaBoSS
4. Print drug results

For details on individual workflow steps, see the user documentation for each building block.

[`GitHub repository`](https://github.com/PerMedCoE/drug-synergies-workflow&gt;)

## Contents

### Building Blocks

The ``BuildingBlocks`` folder contains the script to install the
Building Blocks used in the Drug Synergies Workflow.

### Workflows

The ``Workflow`` folder contains the workflows implementations.

Currently contains the implementation using PyCOMPSs.

### Resources

The ``Resources`` folder contains a small dataset for testing purposes.

### Tests

The ``Tests`` folder contains the scripts that run each Building Block
used in the workflow for a small dataset.
They can be executed individually *without PyCOMPSs installed* for testing
purposes.

## Instructions

### Local machine

This section explains the requirements and usage for the Drug Synergies Workflow in a laptop or desktop computer.

#### Requirements

- [`permedcoe`](https://github.com/PerMedCoE/permedcoe) package
- [PyCOMPSs](https://pycompss.readthedocs.io/en/stable/Sections/00_Quickstart.html)
- [Singularity](https://sylabs.io/guides/3.0/user-guide/installation.html)

#### Usage steps

1. Clone this repository:

  ```bash
  git clone https://github.com/PerMedCoE/drug-synergies-workflow.git
  ```

2. Install the Building Blocks required for the COVID19 Workflow:

  ```bash
  drug-synergies-workflow/BuildingBlocks/./install_BBs.sh
  ```

3. Get the required Building Block images from the project [B2DROP](https://b2drop.bsc.es/index.php/f/444350):

  - Required images:
      - PhysiCell-COVID19.singularity
      - printResults.singularity
      - MaBoSS_sensitivity.singularity
      - FromSpeciesToMaBoSSModel.singularity

  The path where these files are stored **MUST be exported in the `PERMEDCOE_IMAGES`** environment variable.

  &gt; :warning: **TIP**: These containers can be built manually as follows (be patient since some of them may take some time):
  1. Clone the `BuildingBlocks` repository
     ```bash
     git clone https://github.com/PerMedCoE/BuildingBlocks.git
     ```
  2. Build the required Building Block images
     ```bash
     cd BuildingBlocks/Resources/images
     sudo singularity build PhysiCell-COVID19.sif PhysiCell-COVID19.singularity
     sudo singularity build printResults.sif printResults.singularity
     sudo singularity build MaBoSS_sensitivity.sif MaBoSS_sensitivity.singularity
     sudo singularity build FromSpeciesToMaBoSSModel.sif FromSpeciesToMaBoSSModel.singularity
     cd ../../..
     ```

**If using PyCOMPSs in local PC** (make sure that PyCOMPSs in installed):

4. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflows/PyCOMPSs
   ```

5. Execute `./run.sh`
  &gt; **TIP**: If you want to run the workflow with a different dataset, please update the `run.sh` script setting the `dataset` variable to the new dataset folder and their file names.

### MareNostrum 4

This section explains the requirements and usage for the Drug Synergies Workflow in the MareNostrum 4 supercomputer.

#### Requirements in MN4

- Access to MN4

All Building Blocks are already installed in MN4, and the Drug Synergies Workflow available.

#### Usage steps in MN4

1. Load the `COMPSs`, `Singularity` and `permedcoe` modules

   ```bash
   export COMPSS_PYTHON_VERSION=3
   module load COMPSs/3.1
   module load singularity/3.5.2
   module use /apps/modules/modulefiles/tools/COMPSs/libraries
   module load permedcoe
   ```

   &gt; **TIP**: Include the loading into your `${HOME}/.bashrc` file to load it automatically on the session start.

   This commands will load COMPSs and the permedcoe package which provides all necessary dependencies, as well as the path to the singularity container images (`PERMEDCOE_IMAGES` environment variable) and testing dataset (`DRUG_SYNERGIES_WORKFLOW_DATASET` environment variable).

2. Get a copy of the pilot workflow into your desired folder

   ```bash
   mkdir desired_folder
   cd desired_folder
   get_drug_synergies_workflow
   ```

3. Go to `Workflow/PyCOMPSs` folder

   ```bash
   cd Workflow/PyCOMPSs
   ```

4. Execute `./launch.sh`

  This command will launch a job into the job queuing system (SLURM) requesting 2 nodes (one node acting half master and half worker, and other full worker node) for 20 minutes, and is prepared to use the singularity images that are already deployed in MN4 (located into the `PERMEDCOE_IMAGES` environment variable). It uses the dataset located into `../../Resources/data` folder.

  &gt; :warning: **TIP**: If you want to run the workflow with a different dataset, please edit the `launch.sh` script and define the appropriate dataset path.

  After the execution, a `results` folder will be available with with Drug Synergies Workflow results.

## License

[Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)

## Contact



This software has been developed for the [PerMedCoE project](https://permedcoe.eu/), funded by the European Commission (EU H2020 [951773](https://cordis.europa.eu/project/id/951773)).

![](https://permedcoe.eu/wp-content/uploads/2020/11/logo_1.png \"PerMedCoE\")""" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "PerMedCoE Drug Synergy" ;
    <http://schema.org/producer> "https://workflowhub.eu/projects/165" ;
    <http://schema.org/programmingLanguage> "#pycompss" ;
    <http://schema.org/sdDatePublished> "2023-05-23 12:36:45+00:00" ;
    <http://schema.org/sdPublisher> "https://about.workflowhub.eu/" ;
    <http://schema.org/url> "https://workflowhub.eu/workflows/479?version=1" ;
    <http://schema.org/version> "1" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> , <http://schema.org/SoftwareSourceCode> , <https://bioschemas.org/ComputationalWorkflow> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/dab03da9-6f4d-4a21-bbec-439a907d7b97> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 6371 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/dab03da9-6f4d-4a21-bbec-439a907d7b97/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.326229+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:01.190513+00:00" ;
    <http://schema.org/encodingFormat> "text/markdown" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "README.md" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.326229+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/e00cd2fc-e208-40bd-8128-33ac97eebd9e> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 183 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/e00cd2fc-e208-40bd-8128-33ac97eebd9e/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.333474+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:03.710349+00:00" ;
    <http://schema.org/encodingFormat> "text/plain" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "required_BBs.txt" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.333474+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/e1404702-1a21-4bbd-81bf-c467650425d5> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 404 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/e1404702-1a21-4bbd-81bf-c467650425d5/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.337421+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:05.093776+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "clean_BBs.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.337421+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/eaac98ec-5a60-4019-aa2b-2e66c63cb493> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 414 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/eaac98ec-5a60-4019-aa2b-2e66c63cb493/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.335910+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 09:00:04.674829+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "install_BBs.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.335910+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/ede95598-0c03-45db-b667-802fc33a1666> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 1793 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/ede95598-0c03-45db-b667-802fc33a1666/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.142940+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:59.158633+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "3_run_maboss_bb.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.142940+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/fa4dfed0-adf2-4c22-8b0d-f95e0efbec0b> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 11357 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/fa4dfed0-adf2-4c22-8b0d-f95e0efbec0b/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.137336+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:57.283738+00:00" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "LICENSE" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.137336+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/resources/ff01fad8-983f-4915-bbcd-bb23704689b0> <http://schema.org/author> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/contentSize> 906 ;
    <http://schema.org/contentUrl> "https://api.rohub.org/api/resources/ff01fad8-983f-4915-bbcd-bb23704689b0/download/" ;
    <http://schema.org/creator> <https://orcid.org/0000-0003-2388-0744> ;
    <http://schema.org/dateCreated> "2023-09-06 08:59:56.140075+00:00" ;
    <http://schema.org/dateModified> "2023-09-06 08:59:57.926311+00:00" ;
    <http://schema.org/encodingFormat> "text/x-sh" ;
    <http://schema.org/license> <https://choosealicense.com/no-permission/> ;
    <http://schema.org/name> "1.a_build_model_bb.sh" ;
    <http://schema.org/sdDatePublished> "2023-09-06 08:59:56.140075+00:00" ;
    a <http://purl.org/wf4ever/wf4ever#Resource> , <http://schema.org/MediaObject> .
  <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/ro-crate-metadata.json> dct:conformsTo <https://w3id.org/ro/crate/1.1> ;
    <http://schema.org/about> <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/> ;
    a <http://schema.org/CreativeWork> .
  <https://workflowhub.eu/projects/165> <http://schema.org/name> "PerMedCoE" ;
    a <http://schema.org/Organization> , <http://schema.org/Project> .
}
sub:provenance {
  sub:assertion prov:wasDerivedFrom <https://api.rohub.org/api/ros/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/crate/download/ro-crate-metadata.json> .
}
sub:pubinfo {
  this: dct:created "2025-11-11T16:09:20.918+01:00"^^xsd:dateTime ;
    npx:introduces <https://w3id.org/ro-id/7ab8a5dd-8bc6-46c1-8ca9-a0c245a896ad/> ;
    a npx:RoCrateNanopub ;
    rdfs:label "Research Object Crate for PerMedCoE Drug Synergy" .
  sub:sig npx:hasAlgorithm "RSA" ;
    npx:hasPublicKey "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4pPaESKwmC6l37P86K6TNLq6yeQtc7m9CvcqauLs/1FC0viHvQnFBgxj0a+loPDv/Egwe6OqFpa0iW9Ypnyz9YPoh+pxbRXonbuMOb+8Ry9hXZ+TEKfWjhjVDGEaClwfRwglh2HI/xfV4CD9AgvDOEoZQiyta8a90PYwJ3G6e70oCHTn61+OWTkI9KRYHOYgg3btdy2Z7q/30PTFawb2ZT5aIfIJYobUYv2a7yhtcqWCHZeKv0bxGnRjTFNx1rscBMlLJSzvRtpQc1cCRVEPFZHo1adaXCI9tGvn4cxeNQ96y8dxkN1XhpaJairde+23MDzf42Oe97KG2HYzKiyVnQIDAQAB" ;
    npx:hasSignature "TJc3Wu9WMPSoFOVu3B94ZNiayTgeRDpOptC3pt7BxiDHCxP6d+QpjXh8t2irjxypEPQZMBWdJspqOY58OsOhvPMCWhgoQAJMk4m6IpSeq/MXX3CB/Gjy57tcb3Fn1B15KfWxJMcdnEDInckUGHADXmH953FtI19yYMNmUpk7fSggcEomkBiPfFmKY9SJRrYXHTNZ3jnFaEDX0K8T5fI2pOOXynqUaQuCtCgTkDW/ayCQynxmSXyEE2cHIdR/LHno6w6kaDKkzikKP/dskl6FqlEUhjgxVGbjiL7zf0d+A9Bjrow1PLt2eWR50aLzGuTLVlZyPgo01q9oeWcfTuVouw==" ;
    npx:hasSignatureTarget this: ;
    npx:signedBy <https://w3id.org/kpxl/gen/terms/RoCrateBot> .
}