Update Verify a CRC1280 import authored by Johannes Frenzel's avatar Johannes Frenzel
--- ---
title: Verify a CRC1280 import title: Verify a CRC1280 import
--- ---
## Start bash on the web container ## Start bash on the web container
* Start bash on the web container * Start bash on the web container
...@@ -56,7 +57,7 @@ To verify the import for a specific experiment in the importer, we need two para ...@@ -56,7 +57,7 @@ To verify the import for a specific experiment in the importer, we need two para
`entry_id = 20409` `entry_id = 20409`
**Run the verification from the rails console** #### Run the verification from the rails console
Verify the import of a specific experiment in the importer Verify the import of a specific experiment in the importer
...@@ -74,7 +75,7 @@ experiment_status, report_path = VerifyCRCDatasetImport.verify_experiment_and_re ...@@ -74,7 +75,7 @@ experiment_status, report_path = VerifyCRCDatasetImport.verify_experiment_and_re
The method returns the verification status and the path to the full csv report. The method returns the verification status and the path to the full csv report.
**Run the verification using the rake task** #### Run the verification using the rake task
To run the rake task to verify the experiment in the importer To run the rake task to verify the experiment in the importer
...@@ -109,7 +110,7 @@ To verify the import for all the experiments in the importer, we need the parame ...@@ -109,7 +110,7 @@ To verify the import for all the experiments in the importer, we need the parame
`import_id=49` `import_id=49`
**Run the verification from the rails console** #### Run the verification from the rails console
Verify all experiments in the importer Verify all experiments in the importer
...@@ -121,7 +122,7 @@ experiment_status, report_path = VerifyCRCDatasetImport.verify_import(49) ...@@ -121,7 +122,7 @@ experiment_status, report_path = VerifyCRCDatasetImport.verify_import(49)
The method returns the verification status and the path to the csv reports (one for each experiment in the importer). The method returns the verification status and the path to the csv reports (one for each experiment in the importer).
**Run the verification using the rake task** #### Run the verification using the rake task
To run the rake task to verify all experiments in the import To run the rake task to verify all experiments in the import
... ...
......