Skip to content

Commit 4e2eb82

Browse files
tnagamineclaude
andcommitted
Fix pt_dx.csv URI bug in rwd-lineage.xml and update .gitignore
- Correct 3 MapID source URIs (ICD10, TERM, DATE at RowIndex 1) that incorrectly pointed to notes.csv instead of pt_dx.csv - Update Example1.xlsx to match corrected lineage mappings - Extend .gitignore: exclude .DS_Store, **/tests/, Python bytecode, and pytest/coverage artifacts; untrack examples/example1/.DS_Store Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 9e28063 commit 4e2eb82

4 files changed

Lines changed: 19 additions & 3 deletions

File tree

.gitignore

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
RWD Lineage Project Charter-v29-20260316_103831.docx
22
examples/example1/generate_xml.py
3+
4+
# macOS
5+
.DS_Store
6+
**/.DS_Store
7+
8+
# Tests
9+
**/tests/
10+
11+
# Python / pytest
12+
__pycache__/
13+
*.pyc
14+
*.pyo
15+
*.pyd
16+
.pytest_cache/
17+
.coverage
18+
htmlcov/

examples/example1/.DS_Store

-6 KB
Binary file not shown.

examples/example1/Example1.xlsx

-227 Bytes
Binary file not shown.

examples/example1/data/define/rwd-lineage.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
<Transformation type="DirectMap">Direct Map</Transformation>
263263
<Source>
264264
<Coordinate storage="Filesystem" structure="Tabular">
265-
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/notes.csv</URI>
265+
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/pt_dx.csv</URI>
266266
<RowIndex>1</RowIndex>
267267
<ColumnName>ICD10</ColumnName>
268268
</Coordinate>
@@ -279,7 +279,7 @@
279279
<Transformation type="DirectMap">Direct Map</Transformation>
280280
<Source>
281281
<Coordinate storage="Filesystem" structure="Tabular">
282-
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/notes.csv</URI>
282+
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/pt_dx.csv</URI>
283283
<RowIndex>1</RowIndex>
284284
<ColumnName>TERM</ColumnName>
285285
</Coordinate>
@@ -296,7 +296,7 @@
296296
<Transformation type="AfterIndexDate">After Index Date</Transformation>
297297
<Source>
298298
<Coordinate storage="Filesystem" structure="Tabular">
299-
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/notes.csv</URI>
299+
<URI>https://github.com/cdisc-org/DataExchange-RWD-Lineage/blob/main/examples/example1/data/source/pt_dx.csv</URI>
300300
<RowIndex>1</RowIndex>
301301
<ColumnName>DATE</ColumnName>
302302
</Coordinate>

0 commit comments

Comments
 (0)