Skip to content

Commit

Permalink
Merge pull request #1534 from HumanCellAtlas/ac-alignment-software-Is…
Browse files Browse the repository at this point in the history
…sue1533

Added alignment_software & alignment_software_version field in analysis_protocol Fixes #1533
  • Loading branch information
arschat authored Nov 7, 2023
2 parents cc7a031 + 5192823 commit ae0cd3a
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
5 changes: 4 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@ Starting after v5.0.0 release, updates will be declared for schemas independentl
and (starting with v4.0.0) this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). Unreleased changes may be indicated under the `Unreleased` heading.

## [Unreleased](https://github.com/HumanCellAtlas/metadata-schema/tree/staging)
## [Released](https://github.com/HumanCellAtlas/metadata-schema/)

### [type/protocol/analysis/analysis_protocol.json - v10.1.0] - 2023-11-07
### Added
Added alignment_software & alignment_software_version field in analysis_protocol Fixes#1533

### [core/biomaterial/biomaterial_core.json - v8.4.0] - 2023-08-22
### Added
Expand Down
2 changes: 2 additions & 0 deletions docs/jsonBrowser/type.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ protocol_core | Core protocol-level information. | object | yes | [See core pro
type | The type of protocol. | object | yes | [See module process_type_ontology](module.md#process-type-ontology) | Protocol type | |
computational_method | A URI to a versioned workflow and versioned execution environment in a GA4GH-compliant repository. | string | no | | Computational method | | SmartSeq2SingleCell; 10x
matrix | Information related to protocols that output a matrix. | object | no | [See module matrix](module.md#matrix) | Matrix | |
alignment_software | Name of alignment software used to map FASTQ files to reference genome. | string | no | | Alignment software | | Cellranger; kallisto bustools; GSNAP; STAR
alignment_software_version | Version of alignment software used to map FASTQ files to reference genome. | string | no | | Alignment software version | | v2.0.1; 2.4.2a; v0.45.2

## Aggregate generation protocol
_Information about how cultured cells are developed into cell aggregates._
Expand Down
15 changes: 15 additions & 0 deletions json_schema/type/protocol/analysis/analysis_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
"protocol_core",
"type"
],
"dependencies": {
"alignment_software_version": ["alignment_software"]
},
"title": "Analysis protocol",
"name": "analysis_protocol",
"type": "object",
Expand Down Expand Up @@ -58,6 +61,18 @@
"type": "object",
"$ref": "module/protocol/matrix.json",
"user_friendly": "Matrix"
},
"alignment_software": {
"description": "Name of alignment software used to map FASTQ files to reference genome.",
"type": "string",
"user_friendly": "Alignment software",
"example": "Cellranger; kallisto bustools; GSNAP; STAR"
},
"alignment_software_version": {
"description": "Version of alignment software used to map FASTQ files to reference genome.",
"type": "string",
"user_friendly": "Alignment software version",
"example": "v2.0.1; 2.4.2a; v0.45.2"
}
}
}
4 changes: 2 additions & 2 deletions json_schema/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"last_update_date": "2023-08-22T11:35:16Z",
"last_update_date": "2023-11-07T15:13:34Z",
"version_numbers": {
"core": {
"biomaterial": {
Expand Down Expand Up @@ -114,7 +114,7 @@
},
"protocol": {
"analysis": {
"analysis_protocol": "10.0.0"
"analysis_protocol": "10.1.0"
},
"biomaterial_collection": {
"aggregate_generation_protocol": "2.1.0",
Expand Down

0 comments on commit ae0cd3a

Please sign in to comment.