You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-[Review and correction of programmatic value splitting](#split)
19
+
*[Prep/setup job](#splitprep)
20
+
+[Normalization job example](#splitprepnorm)
21
+
+[Prep example](#splitprepprep)
22
+
*[FCAR configuration](#splitconfig)
23
+
*[Merge job](#splitmerge)
24
24
25
-
## Review and correction of programmatic value splitting
25
+
## Review and correction of programmatic value splitting {#split}
26
26
27
27
The prep and merge sections below use `:init__prep` as the job output from which we are peeling off this FCAR proccess, and thus to which we are merging its results back in.
28
28
29
-
### Prep/setup job
29
+
### Prep/setup job {#splitprep}
30
30
31
31
To ease the merge process, it's recommended you break this into two jobs:
32
32
33
33
- normalize: normalizes the values to be included in the worksheet
34
34
- prep: deduplicates on normalized values and finalizes prep for the split FCAR
35
35
36
-
#### Normalization job example
36
+
#### Normalization job example {#splitprepnorm}
37
37
38
38
In this example, we are pulling just the location field values out of a single migrating table and applying [the normalization described in the worksheet instructions](https://github.com/lyrasis/kiba-extend/blob/main/fcar_instructions/split_values.adoc#details-on-data-preprocessing-done-prior-to-preparing-this-worksheet) to them.
39
39
@@ -92,7 +92,7 @@ module Project
92
92
end
93
93
~~~
94
94
95
-
#### Prep example
95
+
#### Prep example {#splitprepprep}
96
96
97
97
~~~ruby
98
98
# frozen_string_literal: true
@@ -142,7 +142,7 @@ module Project
142
142
end
143
143
~~~
144
144
145
-
### FCAR configuration
145
+
### FCAR configuration {#splitconfig}
146
146
147
147
~~~ruby
148
148
# frozen_string_literal: true
@@ -245,7 +245,7 @@ module Project
245
245
end
246
246
~~~
247
247
248
-
### Merge job
248
+
### Merge job {#splitmerge}
249
249
250
250
This job replaces the `location` values in the original `:init__prep` output with the correctly and unambiguously delimited values from the FCAR worksheet.
0 commit comments