Job request: 9208
- Organisation:
 - Bennett Institute
 - Workspace:
 - qof-blood-pressure
 - ID:
 - jeekhu44d2egwm6j
 
This page shows the technical details of what happened when the authorised researcher Milan Wiedemann 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
- 
                
- Job identifier:
 - 
                    
                    
4ess6auhd6mzltzu 
 
Pipeline
Show project.yaml
version: '3.0'
expectations:
  population_size: 1000
actions:
  # Generate ethnicity study population
  generate_study_population_ethnicity:
    run: > 
      cohortextractor:latest generate_cohort 
      --study-definition study_definition_ethnicity 
      --output-dir=output
      --output-format=csv
    outputs:
      highly_sensitive:
        cohort: output/input_ethnicity.csv
  generate_study_population_bp002:
    run: > 
      cohortextractor:latest generate_cohort 
      --study-definition study_definition_bp002 
      --index-date-range "2019-03-01 to 2022-04-01 by month" 
      --output-dir=output
      --output-format=csv
    outputs:
      highly_sensitive:
        cohort: output/input_bp002*.csv
  
  join_ethnicity_bp002:
    run: >
      cohort-joiner:v0.0.12 
        --lhs output/input_bp002*.csv
        --rhs output/input_ethnicity.csv
        --output-dir output/joined
    needs: [generate_study_population_ethnicity, generate_study_population_bp002]
    outputs:
      highly_sensitive:
        cohort: output/joined/input_bp002*.csv
  generate_measures_bp002:
     run: >
       cohortextractor:latest generate_measures 
       --study-definition study_definition_bp002 
       --output-dir=output/joined
     needs: [join_ethnicity_bp002]
     outputs:
       moderately_sensitive:
         measure_csv: output/joined/measure_bp002_*_rate.csv
  generate_deciles_charts:
    run: >
      deciles-charts:v0.0.15
        --input-files output/joined/measure_*.csv
        --output-dir output/joined/
    config:
      show_outer_percentiles: false
      tables:
        output: true
      charts:
        output: true
    needs: [generate_measures_bp002]
    outputs:
      moderately_sensitive:
        deciles_charts: output/joined/deciles_chart_*_*_practice_breakdown_rate.png
        deciles_tables: output/joined/deciles_table_*_*_practice_breakdown_rate.csv
      
  join_measures:
    run: r:latest analysis/join_measures.R
    needs: [generate_measures_bp002]
    outputs:
      moderately_sensitive:
        bp002_achievement_csv: output/joined/measures/measures_bp002_achievem.csv
        bp002_exclusion_csv: output/joined/measures/measures_bp002_excl.csv
Timeline
- 
  
    
  
  
Created:
 - 
  
    
  
  
Started:
 - 
  
    
  
  
Finished:
 - 
  
  
Runtime: 01:09:49
 
These timestamps are generated and stored using the UTC timezone on the TPP backend.
Job request
- Status
 - 
            Succeeded
 - Backend
 - TPP
 - Workspace
 - qof-blood-pressure
 - Requested by
 - Milan Wiedemann
 - Branch
 - main
 - Force run dependencies
 - No
 - Git commit hash
 - 2d26c87
 - Requested actions
 - 
            
- 
                  
generate_study_population_ethnicity 
 - 
                  
 
Code comparison
Compare the code used in this job request