Skip to content

Job request: 3447

Organisation:
Bennett Institute
Workspace:
post-vax-ae-attendance_main
ID:
62c2qd4kx4vhjmzn

This page shows the technical details of what happened when the authorised researcher Will Hulme 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:
    design
    Status:
    Status: Succeeded
    Job identifier:
    ir76jhr3rmdjmls7
  • Action:
    extract
    Status:
    Status: Succeeded
    Job identifier:
    wkx3lkc7ek6rc2ug
  • Action:
    process
    Status:
    Status: Succeeded
    Job identifier:
    5bxdejgvpu5mjar7
  • Action:
    descr_diagnoses
    Status:
    Status: Succeeded
    Job identifier:
    bo6ay2l6sour4pzl
  • Action:
    descr_table1
    Status:
    Status: Succeeded
    Job identifier:
    ok7sckjaz5vnmgil
  • Action:
    descr_vaxdate
    Status:
    Status: Succeeded
    Job identifier:
    jgrhtadw747nbn6k
  • Action:
    rmd_report
    Status:
    Status: Succeeded
    Job identifier:
    7gtx6whi7u5ltvee

Pipeline

Show project.yaml
version: '3.0'

expectations:
  population_size: 10000

actions:


  design:
    run: r:latest analysis/design.R
    outputs:
      moderately_sensitive:
        dates: analysis/lib/dates.json
        groups: analysis/lib/diagnosis_groups.json
        lookup: analysis/lib/diagnosis_groups_lookup.rds
        labels: analysis/lib/variable_labels.rds


  extract:
    run: cohortextractor:latest generate_cohort --study-definition study_definition
      --output-format feather
    # dummy_data_file: -- not yet in use because of https://github.com/opensafely-core/cohort-extractor/issues/611#issuecomment-893544024
    needs: [design]
    outputs:
      highly_sensitive:
        cohort: output/input.feather

  process:
    run: r:latest analysis/process.R
    needs: [design, extract]
    outputs:
      highly_sensitive:
        cohort: output/data/data_cohort.rds

  descr_table1:
    run: r:latest analysis/table1.R
    needs: [design, process]
    outputs:
      highly_sensitive:
        rds: output/table1/*.rds
      moderately_sensitive:
        html: output/table1/*.html
        csv: output/table1/*.csv

  descr_vaxdate:
    run: r:latest analysis/vax_date.R
    needs: [design, process]
    outputs:
      highly_sensitive:
        rds: output/vaxdate/*.rds
      moderately_sensitive:
        png: output/vaxdate/*.png

  descr_diagnoses:
    run: r:latest analysis/diagnoses.R
    needs: [design, process]
    outputs:
      highly_sensitive:
        rds: output/diagnoses/*.rds
      moderately_sensitive:
        png: output/diagnoses/*.png


  rmd_report:
    run: r:latest -e 'rmarkdown::render("analysis/report.Rmd",  knit_root_dir
      = "/workspace",  output_dir = "/workspace/output/report"   )'
    needs: [design, descr_table1, descr_vaxdate, descr_diagnoses]
    outputs:
      moderately_sensitive:
        html: output/report/report.html
        md: output/report/report.md
        figures: output/report/figures/*.png

Timeline

  • Created:

  • Started:

  • Finished:

  • Runtime: 11:22:32

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

Job request

Status
Succeeded
Backend
TPP
Requested by
Will Hulme
Branch
main
Force run dependencies
No
Git commit hash
e6b91c0
Requested actions
  • run_all

Code comparison

Compare the code used in this job request

  • No previous job request available for comparison