-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: adds CDE Library Selection Method to sample metadata
Adds Library Selection Method to sample (CDE 6347743 v2, #124, #47) Also updates the get_cde_permissible_value.py script to avoid a few errors found when generating the sample/library_selection_method.rs file. Co-authored-by: Clay McLeod <[email protected]>
- Loading branch information
1 parent
da8fb60
commit af1490b
Showing
13 changed files
with
1,065 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,10 @@ | ||
//! Common data elements that have a major version of two and are related to a | ||
//! sample. | ||
|
||
mod library_selection_method; | ||
mod preservation_method; | ||
mod tissue_type; | ||
|
||
pub use library_selection_method::LibrarySelectionMethod; | ||
pub use preservation_method::PreservationMethod; | ||
pub use tissue_type::TissueType; |
Oops, something went wrong.