Skip to content

Job request: 18234

Organisation:
University of Manchester
Workspace:
antibiotic-adverse-event
ID:
365wqnuwa5ubfleo

This page shows the technical details of what happened when the authorised researcher Billy Zhong requested one or more actions to be run against real patient data within a secure environment.

By cross-referencing the list of jobs with the pipeline section below, you can infer what security level the outputs were written to.

The output security levels are:

  • highly_sensitive
    • Researchers can never directly view these outputs
    • Researchers can only request code is run against them
  • moderately_sensitive
    • Can be viewed by an approved researcher by logging into a highly secure environment
    • These are the only outputs that can be requested for public release via a controlled output review service.

Jobs

Pipeline

Show project.yaml
version: '3.0'

expectations:
  population_size: 30000

actions:

### study cohort ###
  generate_study_population_case_uti:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_case_uti
    outputs:
      highly_sensitive:
        cohort: output/input_case_uti.csv

  generate_study_population_control_uti:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_control_uti
    outputs:
      highly_sensitive:
        cohort: output/input_control_uti.csv

  matching_uti:
    run: python:latest python analysis/matching_uti.py
    needs: [generate_study_population_case_uti,generate_study_population_control_uti]
    outputs:
      highly_sensitive: 
        table1: output/matched_cases_uti.csv
        table2: output/matched_matches_uti.csv
        table3: output/matched_combined_uti.csv
      moderately_sensitive: 
        report1: output/matching_report_uti.txt

  generate_study_population_case_uti_abvar:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_case_uti_abvar
    needs: [matching_uti]
    outputs:
      highly_sensitive:
        cohort: output/input_case_uti_abvar.csv

  generate_study_population_control_uti_abvar:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_control_uti_abvar
    needs: [matching_uti]
    outputs:
      highly_sensitive:
        cohort: output/input_control_uti_abvar.csv

### study cohort 2 ###
  generate_study_population_case_uti_study2:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_case_uti_study2
    outputs:
      highly_sensitive:
        cohort: output/input_case_uti_study2.csv

  generate_study_population_control_uti_study2:
    run: cohortextractor:latest generate_cohort --study-definition study_definition_control_uti_study2
    outputs:
      highly_sensitive:
        cohort: output/input_control_uti_study2.csv

  matching_uti2:
    run: python:latest python analysis/matching_uti2.py
    needs: [generate_study_population_case_uti_study2,generate_study_population_control_uti_study2]
    outputs:
      highly_sensitive: 
        table1: output/matched_cases_uti2.csv
        table2: output/matched_matches_uti2.csv
        table3: output/matched_combined_uti2.csv
      moderately_sensitive: 
        report1: output/matching_report_uti2.txt

  study2_uti_table:  
    run: r:latest analysis/table/study2_uti_table.R
    needs: [generate_study_population_case_uti_study2]
    outputs:
      moderately_sensitive:
        table1: output/study2_uti_table.csv

Timeline

  • Created:

  • Started:

  • Finished:

  • Runtime: 00:00:17

These timestamps are generated and stored using the UTC timezone on the TPP backend.

Job request

Status
Succeeded
Backend
TPP
Requested by
Billy Zhong
Branch
ab_sideeffect_2
Force run dependencies
No
Git commit hash
4657fc5
Requested actions
  • study2_uti_table

Code comparison

Compare the code used in this job request