-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from larsgson/larsg-test-uwj-format
Larsg test uwj format
- Loading branch information
Showing
26 changed files
with
16,743 additions
and
11,258 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[ | ||
{ | ||
"id": 0, | ||
"type": "Inputs", | ||
"inputs": { | ||
"perf": "json" | ||
} | ||
}, | ||
{ | ||
"id": 1, | ||
"title": "Simplify Input PERF", | ||
"name": "justTheBible", | ||
"transformName": "justTheBible", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Input perf" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 999, | ||
"type": "Outputs", | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 1 perf" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
[ | ||
{ | ||
"id": 0, | ||
"type": "Inputs", | ||
"inputs": { | ||
"perf": "json", | ||
"strippedAlignment": "json" | ||
} | ||
}, | ||
{ | ||
"id": 1, | ||
"title": "Count stripped perf words", | ||
"name": "verseWords", | ||
"transformName": "verseWords", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Input perf" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "verseWords", | ||
"type": "json" | ||
} | ||
], | ||
"description": "PERF=>JSON: Counts words occurrences" | ||
}, | ||
{ | ||
"id": 2, | ||
"title": "Merge Back Into Stripped (roundtrip)", | ||
"name": "mergeAlignment", | ||
"transformName": "mergeAlignment", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Input perf" | ||
}, | ||
{ | ||
"name": "strippedAlignment", | ||
"type": "json", | ||
"source": "Input strippedAlignment" | ||
}, | ||
{ | ||
"name": "verseWords", | ||
"type": "json", | ||
"source": "Transform 1 verseWords" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
}, | ||
{ | ||
"name": "unalignedWords", | ||
"type": "json" | ||
} | ||
], | ||
"description": "PERF=>PERF adds report to verses" | ||
}, | ||
{ | ||
"id": 3, | ||
"title": "Merge Merged PERF Text", | ||
"name": "mergePerfText", | ||
"transformName": "mergePerfText", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 2 perf" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
} | ||
], | ||
"description": "PERF=>PERF: Merge consecutive text strings" | ||
}, | ||
{ | ||
"id": 999, | ||
"type": "Outputs", | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 3 perf" | ||
}, | ||
{ | ||
"name": "unalignedWords", | ||
"type": "json", | ||
"source": "Transform 2 unalignedWords" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
[ | ||
{ | ||
"id": 0, | ||
"type": "Inputs", | ||
"inputs": { | ||
"perf": "json", | ||
"usfmJs": "json" | ||
} | ||
}, | ||
{ | ||
"id": 1, | ||
"title": "Strip uW alignment", | ||
"name": "stripUwAlignment", | ||
"transformName": "stripUwAlignment", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Input perf" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 2, | ||
"title": "Merge uW alignment", | ||
"name": "mergeUwAlignment", | ||
"transformName": "mergeUwAlignment", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 1 perf" | ||
}, | ||
{ | ||
"name": "usfmJs", | ||
"type": "json", | ||
"source": "Input usfmJs" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
}, | ||
{ | ||
"name": "occurrences", | ||
"type": "json" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 3, | ||
"title": "Add occurrences", | ||
"name": "addUwAlignmentOccurrences", | ||
"transformName": "addUwAlignmentOccurrences", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 2 perf" | ||
}, | ||
{ | ||
"name": "occurrences", | ||
"type": "json", | ||
"source": "Transform 2 occurrences" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json" | ||
} | ||
] | ||
}, | ||
{ | ||
"id": 999, | ||
"type": "Outputs", | ||
"outputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Transform 3 perf" | ||
}, | ||
{ | ||
"name": "occurrences", | ||
"type": "json", | ||
"source": "Transform 2 perf" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
[ | ||
{ | ||
"id": 0, | ||
"type": "Inputs", | ||
"inputs": { | ||
"perf": "json" | ||
} | ||
}, | ||
{ | ||
"id": 1, | ||
"title": "PERF to USFMJS", | ||
"name": "perfToUsfmJs", | ||
"type": "Transform", | ||
"inputs": [ | ||
{ | ||
"name": "perf", | ||
"type": "json", | ||
"source": "Input perf" | ||
} | ||
], | ||
"outputs": [ | ||
{ | ||
"name": "usfmJs", | ||
"type": "json" | ||
} | ||
], | ||
"description": "USFM=>PERF: Conversion via Proskomma" | ||
}, | ||
{ | ||
"id": 999, | ||
"type": "Outputs", | ||
"outputs": [ | ||
{ | ||
"name": "usfmJs", | ||
"type": "json", | ||
"source": "Transform 1 usfmJs" | ||
} | ||
] | ||
} | ||
] |
Oops, something went wrong.