-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create music-v2.0.yaml Create next-gen MUSIC directory schema (non-specified files only accepted in extras directory, per update at 4/15/24 DCWG Meeting). * Update CHANGELOG.md Add next-gen MUSIC directory schema * Docs: Update MUSIC docs * Docs: Update YAML/XLSX --------- Co-authored-by: Juan Puerto <=>
- Loading branch information
Showing
9 changed files
with
81 additions
and
0 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
Binary file not shown.
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 @@ | ||
Moved to [github pages](https://hubmapconsortium.github.io/ingest-validation-tools/music/). |
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,39 @@ | ||
--- | ||
title: MUSIC | ||
schema_name: music | ||
category: Sequence Assays | ||
all_versions_deprecated: False | ||
exclude_from_index: False | ||
layout: default | ||
|
||
--- | ||
Prepare your metadata based on the latest metadata schema using one of the template files below. See the instructions in the [Metadata Validation Workflow](https://docs.google.com/document/d/1lfgiDGbyO4K4Hz1FMsJjmJd9RdwjShtJqFYNwKpbcZY) document for more information on preparing and validating your metadata.tsv file prior to submission. | ||
|
||
Related files: | ||
|
||
|
||
- [📝 Excel template](https://raw.githubusercontent.com/hubmapconsortium/dataset-metadata-spreadsheet/main/music/latest/music.xlsx): For metadata entry. | ||
- [📝 TSV template](https://raw.githubusercontent.com/hubmapconsortium/dataset-metadata-spreadsheet/main/music/latest/music.tsv): Alternative for metadata entry. | ||
|
||
|
||
|
||
|
||
## Metadata schema | ||
|
||
|
||
<summary><a href="https://openview.metadatacenter.org/templates/https:%2F%2Frepo.metadatacenter.org%2Ftemplates%2F5efe0d51-828c-457a-9b94-2ac8090fe14f"><b>Version 2 (use this one)</b></a></summary> | ||
|
||
|
||
|
||
<br> | ||
|
||
## Directory schemas | ||
<summary><b>Version 2.0 (use this one)</b></summary> | ||
|
||
| pattern | required? | description | | ||
| --- | --- | --- | | ||
| <code>extras\/.*</code> | ✓ | Folder for general lab-specific files related to the dataset. | | ||
| <code>raw\/fastq\/[^\/]+_R[^\/]+\.fastq\.gz</code> | ✓ | The raw un-multiplexed fastq files. | | ||
| <code>lab_processed\/fastq\/DNA\/[^\/]+_R[^\/]+\.fastq\.gz</code> | ✓ | This is a GZip'd version of the fastq files from whole genome sequencing. | | ||
| <code>lab_processed\/fastq\/RNA\/[^\/]+_R[^\/]+\.fastq\.gz</code> | ✓ | This is a GZip'd version of the forward and reverse fastq files from RNAseq sequencing (R1 and R2). | | ||
|
21 changes: 21 additions & 0 deletions
21
src/ingest_validation_tools/directory-schemas/music-v2.0.yaml
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,21 @@ | ||
files: | ||
- | ||
pattern: extras\/.* | ||
required: True | ||
description: Folder for general lab-specific files related to the dataset. | ||
- | ||
pattern: raw\/fastq\/[^\/]+_R[^\/]+\.fastq\.gz | ||
required: True | ||
description: The raw un-multiplexed fastq files. | ||
is_qa_qc: False | ||
- | ||
pattern: lab_processed\/fastq\/DNA\/[^\/]+_R[^\/]+\.fastq\.gz | ||
required: True | ||
description: This is a GZip'd version of the fastq files from whole genome sequencing. | ||
is_qa_qc: False | ||
- | ||
pattern: lab_processed\/fastq\/RNA\/[^\/]+_R[^\/]+\.fastq\.gz | ||
required: True | ||
description: This is a GZip'd version of the forward and reverse fastq files from RNAseq sequencing (R1 and R2). | ||
is_qa_qc: False | ||
|
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
12 changes: 12 additions & 0 deletions
12
src/ingest_validation_tools/table-schemas/assays/music-v2.yaml
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,12 @@ | ||
fields: | ||
- name: is_cedar | ||
description: 'Identifies whether the version is hosted by CEDAR' | ||
example: 'https://openview.metadatacenter.org/templates/https:%2F%2Frepo.metadatacenter.org%2Ftemplates%2F5efe0d51-828c-457a-9b94-2ac8090fe14f' | ||
- name: assay_category | ||
constraints: | ||
enum: | ||
- sequence | ||
- name: assay_type | ||
constraints: | ||
enum: | ||
- MUSIC |