Skip to content

Commit

Permalink
a new function
Browse files Browse the repository at this point in the history
  • Loading branch information
mgcam committed Dec 12, 2018
1 parent d52362b commit 7dfc10a
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ LIST OF CHANGES
for the rest
- explicitly use iRODS loader from an 'old' dated directory for
old style runfolders
- a new function, archive_run_data_to_irods, to publish run-level non-product data to iRODS

release 52.1
- bug fix in jobs names where jobs name should include the pipeline
Expand Down
14 changes: 14 additions & 0 deletions data/config_files/function_list_central_qc_run.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,11 @@
"source" : "run_archival_in_progress",
"target" : "archive_to_irods_samplesheet"
},
{
"relation" : "dependsOn",
"target" : "archive_run_data_to_irods",
"source" : "archive_to_irods_samplesheet"
},
{
"relation" : "dependsOn",
"source" : "archive_to_irods_samplesheet",
Expand All @@ -186,6 +191,11 @@
"source" : "archive_to_irods_samplesheet",
"target" : "upload_auto_qc_to_qc_database"
},
{
"relation" : "dependsOn",
"target" : "run_run_archived",
"source" : "archive_run_data_to_irods"
},
{
"relation" : "dependsOn",
"target" : "run_run_archived",
Expand Down Expand Up @@ -321,6 +331,10 @@
"id" : "archive_to_irods_samplesheet",
"label" : "archive_to_irods_samplesheet"
},
{
"id" : "archive_run_data_to_irods",
"label" : "archive_run_data_to_irods"
},
{
"id" : "run_run_archived",
"label" : "run_run_archived"
Expand Down
14 changes: 14 additions & 0 deletions data/config_files/function_list_post_qc_review.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@
"source" : "update_ml_warehouse",
"target" : "archive_to_irods_ml_warehouse"
},
{
"relation" : "dependsOn",
"target" : "archive_run_data_to_irods",
"source" : "archive_to_irods_ml_warehouse"
},
{
"relation" : "dependsOn",
"target" : "upload_fastqcheck_to_qc_database",
Expand All @@ -41,6 +46,11 @@
"target" : "run_run_archived",
"source" : "upload_illumina_analysis_to_qc_database"
},
{
"relation" : "dependsOn",
"target" : "run_run_archived",
"source" : "archive_run_data_to_irods"
},
{
"relation" : "dependsOn",
"target" : "run_run_archived",
Expand Down Expand Up @@ -94,6 +104,10 @@
"id" : "archive_to_irods_ml_warehouse",
"label" : "archive_to_irods_ml_warehouse"
},
{
"id" : "archive_run_data_to_irods",
"label" : "archive_run_data_to_irods"
},
{
"id" : "upload_fastqcheck_to_qc_database",
"label" : "upload_fastqcheck_to_qc_database"
Expand Down
1 change: 1 addition & 0 deletions lib/npg_pipeline/pluggable/registry.pm
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Readonly::Hash my %REGISTRY => (
'upload_illumina_analysis_to_qc_database' => {'illumina_qc_archiver' => 'create'},
'upload_fastqcheck_to_qc_database' => {'fastqcheck_archiver' => 'create'},
'upload_auto_qc_to_qc_database' => {'autoqc_archiver' => 'create'},
'archive_run_data_to_irods' => {'run_data_to_irods_archiver' => 'create'},

'bam_cluster_counter_check'=> {'cluster_count' => 'create'},
'seqchksum_comparator' => {'seqchksum_comparator' => 'create'},
Expand Down

0 comments on commit 7dfc10a

Please sign in to comment.