Skip to content

Commit

Permalink
copy to lang
Browse files Browse the repository at this point in the history
  • Loading branch information
schristley committed Jul 26, 2024
1 parent 371aaaa commit aecc7d4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lang/R/inst/extdata/airr-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,7 @@ Subject:
format: controlled_vocabulary
age_min:
type: number
minimum: 0
description: Specific age or lower boundary of age range.
title: Age minimum
example: 60
Expand All @@ -1820,6 +1821,7 @@ Subject:
name: Age minimum
age_max:
type: number
minimum: 0
description: >
Upper boundary of age range or equal to age_min for specific age.
This field should only be null if age_min is null.
Expand Down Expand Up @@ -2318,6 +2320,7 @@ CellProcessing:
name: Single-cell sort
cell_number:
type: integer
minimum: 0
description: Total number of cells that went into the experiment
title: Number of cells in experiment
example: 1000000
Expand All @@ -2330,6 +2333,7 @@ CellProcessing:
name: Number of cells in experiment
cells_per_reaction:
type: integer
minimum: 0
description: Number of cells for each biological replicate
title: Number of cells per sequencing reaction
example: 50000
Expand Down Expand Up @@ -2497,6 +2501,7 @@ NucleicAcidProcessing:
name: Target substrate quality
template_amount:
type: number
minimum: 0
description: Amount of template that went into the process
title: Template amount
example: 1000
Expand Down
5 changes: 5 additions & 0 deletions lang/js/airr-schema-openapi3.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1909,6 +1909,7 @@ Subject:
age_min:
type: number
nullable: true
minimum: 0
description: Specific age or lower boundary of age range.
title: Age minimum
example: 60
Expand All @@ -1921,6 +1922,7 @@ Subject:
age_max:
type: number
nullable: true
minimum: 0
description: >
Upper boundary of age range or equal to age_min for specific age.
This field should only be null if age_min is null.
Expand Down Expand Up @@ -2421,6 +2423,7 @@ CellProcessing:
cell_number:
type: integer
nullable: true
minimum: 0
description: Total number of cells that went into the experiment
title: Number of cells in experiment
example: 1000000
Expand All @@ -2433,6 +2436,7 @@ CellProcessing:
cells_per_reaction:
type: integer
nullable: true
minimum: 0
description: Number of cells for each biological replicate
title: Number of cells per sequencing reaction
example: 50000
Expand Down Expand Up @@ -2600,6 +2604,7 @@ NucleicAcidProcessing:
template_amount:
type: number
nullable: true
minimum: 0
description: Amount of template that went into the process
title: Template amount
example: 1000
Expand Down
5 changes: 5 additions & 0 deletions lang/python/airr/specs/airr-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1808,6 +1808,7 @@ Subject:
format: controlled_vocabulary
age_min:
type: number
minimum: 0
description: Specific age or lower boundary of age range.
title: Age minimum
example: 60
Expand All @@ -1820,6 +1821,7 @@ Subject:
name: Age minimum
age_max:
type: number
minimum: 0
description: >
Upper boundary of age range or equal to age_min for specific age.
This field should only be null if age_min is null.
Expand Down Expand Up @@ -2318,6 +2320,7 @@ CellProcessing:
name: Single-cell sort
cell_number:
type: integer
minimum: 0
description: Total number of cells that went into the experiment
title: Number of cells in experiment
example: 1000000
Expand All @@ -2330,6 +2333,7 @@ CellProcessing:
name: Number of cells in experiment
cells_per_reaction:
type: integer
minimum: 0
description: Number of cells for each biological replicate
title: Number of cells per sequencing reaction
example: 50000
Expand Down Expand Up @@ -2497,6 +2501,7 @@ NucleicAcidProcessing:
name: Target substrate quality
template_amount:
type: number
minimum: 0
description: Amount of template that went into the process
title: Template amount
example: 1000
Expand Down

0 comments on commit aecc7d4

Please sign in to comment.