Skip to content

Job request: 5212

Organisation:
The UK Renal Registry
Workspace:
ckd-coverage-ve
ID:
nz7tergrwyicyngx

This page shows the technical details of what happened when the authorised researcher Ed Parker 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

  • Action:
    data_selection
    Status:
    Status: Succeeded
    Job identifier:
    jvgnmanjgyoylzkf
  • Action:
    table_1
    Status:
    Status: Succeeded
    Job identifier:
    pirbajts2qcqjq4k
  • Action:
    data_properties
    Status:
    Status: Succeeded
    Job identifier:
    66k6vdfspvle4rhb
  • Action:
    vaccine_coverage
    Status:
    Status: Succeeded
    Job identifier:
    u2ykcncayno5j7qt

Pipeline

Show project.yaml
######################################
# Script defines project pipeline via series of actions
######################################

version: '3.0'

expectations:
  population_size: 30000

actions:

  # Extract data ----
  generate_study_population:
    run: cohortextractor:latest generate_cohort --study-definition study_definition --output-dir=output/data
    outputs:
      highly_sensitive:
        cohort: output/data/input.csv
  
# Process data ----
  data_process:
    run: r:latest analysis/data_process.R
    needs: [generate_study_population]
    outputs:
      highly_sensitive:
        data: output/data/data_processed.rds
        csv: output/data/data_processed.csv
        
# Select cohort ----
  data_selection:
    run: r:latest analysis/data_selection.R
    needs: [data_process]
    outputs:
      highly_sensitive:
        data: output/data/data_cohort.rds
        csv: output/data/data_cohort.csv
      moderately_sensitive:
        csv: output/data/flowchart.csv

 # Data properties ----      
  data_properties:
    run: r:latest analysis/data_properties.R output/data/data_cohort.rds output/data_properties
    needs: [data_selection]
    outputs:
      moderately_sensitive:
        cohort: output/data_properties/data_cohort*.txt
        
  # Table 1 ----
  table_1:
    run: r:latest analysis/table_1.R
    needs: [data_selection]
    outputs:
      moderately_sensitive:
        table: output/tables/table1_redacted.html

  # Coverage summaries ----
  vaccine_coverage:
    run: r:latest -e 'rmarkdown::render("analysis/vaccine_coverage.Rmd", knit_root_dir = "/workspace", output_dir="/workspace/output/markdown")'
    needs: [data_selection]
    outputs:
      moderately_sensitive:
        html: output/markdown/vaccine_coverage.html
        csv: output/tables/coverage_over_time_rounded.csv

Timeline

  • Created:

  • Started:

  • Finished:

  • Runtime: 00:07:34

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

Job request

Status
Succeeded
Backend
TPP
Workspace
ckd-coverage-ve
Requested by
Ed Parker
Branch
main
Force run dependencies
No
Git commit hash
3309520
Requested actions
  • data_selection
  • data_properties
  • table_1
  • vaccine_coverage
  • run_all

Code comparison

Compare the code used in this job request