-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Enable list processing for factor values (#95)
- Loading branch information
Showing
6 changed files
with
128 additions
and
18 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,86 @@ | ||
# serializer version: 1 | ||
# name: test_study_reader_minimal_study | ||
list([ | ||
''' | ||
Investigation with only one study contains metadata: | ||
ID: i_minimal | ||
Title: Minimal Investigation | ||
Path: i_minimal.txt | ||
Submission Date: | ||
Public Release Date: None | ||
Prefer recording metadata in the study section. | ||
''', | ||
''' | ||
Assay without platform: | ||
Path: a_minimal.txt | ||
Measurement Type: exome sequencing assay | ||
Technology Type: nucleotide sequencing | ||
Technology Platform: | ||
''', | ||
]) | ||
# --- | ||
# name: test_study_reader_minimal_study_iostring | ||
list([ | ||
''' | ||
Investigation with only one study contains metadata: | ||
ID: i_minimal | ||
Title: Minimal Investigation | ||
Path: <no file> | ||
Submission Date: | ||
Public Release Date: None | ||
Prefer recording metadata in the study section. | ||
''', | ||
''' | ||
Assay without platform: | ||
Path: a_minimal.txt | ||
Measurement Type: exome sequencing assay | ||
Technology Type: nucleotide sequencing | ||
Technology Platform: | ||
''', | ||
]) | ||
# --- | ||
# name: test_study_reader_minimal_study_iostring2 | ||
list([ | ||
''' | ||
Investigation with only one study contains metadata: | ||
ID: i_minimal | ||
Title: Minimal Investigation | ||
Path: <no file> | ||
Submission Date: | ||
Public Release Date: None | ||
Prefer recording metadata in the study section. | ||
''', | ||
''' | ||
Assay without platform: | ||
Path: a_minimal.txt | ||
Measurement Type: exome sequencing assay | ||
Technology Type: nucleotide sequencing | ||
Technology Platform: | ||
''', | ||
]) | ||
# --- | ||
# name: test_study_reader_small_study | ||
list([ | ||
''' | ||
Investigation with only one study contains metadata: | ||
ID: i_small | ||
Title: Small Investigation | ||
Path: i_small.txt | ||
Submission Date: | ||
Public Release Date: None | ||
Prefer recording metadata in the study section. | ||
''', | ||
''' | ||
Assay without platform: | ||
Path: a_small.txt | ||
Measurement Type: exome sequencing assay | ||
Technology Type: nucleotide sequencing | ||
Technology Platform: | ||
''', | ||
]) | ||
# --- | ||
# name: test_study_reader_small_study.1 | ||
list([ | ||
"Found annotated material/file without name: Material(type='Sample Name', unique_name='S1-Empty Sample Name-13-5', name='', extract_label=None, characteristics=(Characteristics(name='status', value=['1'], unit=None),), comments=(), factor_values=(FactorValue(name='treatment', value=[''], unit=None),), material_type=None, headers=['Sample Name', 'Characteristics[status]', 'Factor Value[treatment]'])", | ||
]) | ||
# --- |
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