Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…ration into issue-222-coord-lookup
  • Loading branch information
katiestahl committed Aug 15, 2024
2 parents 1ab6269 + 94d6d6b commit bb0d4d6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
22 changes: 15 additions & 7 deletions client/src/services/ResponseModels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@
*/
export type Evidence = "observed" | "inferred";
/**
* Define possible classes of Regulatory Elements. Options are the possible values
* for /regulatory_class value property in the INSDC controlled vocabulary:
* https://www.insdc.org/controlled-vocabulary-regulatoryclass
* Define possible classes of Regulatory Elements.
*
* Options are the possible values for ``/regulatory_class`` value property in the
* `INSDC controlled vocabulary <https://www.insdc.org/controlled-vocabulary-regulatoryclass>`_.
*/
export type RegulatoryClass =
| "attenuator"
Expand Down Expand Up @@ -113,8 +114,8 @@ export interface AssayedFusion {
/**
* Define RegulatoryElement class.
*
* `featureId` would ideally be constrained as a CURIE, but Encode, our preferred
* feature ID source, doesn't currently have a registered CURIE structure for EH_
* ``featureId`` would ideally be constrained as a CURIE, but Encode, our preferred
* feature ID source, doesn't currently have a registered CURIE structure for ``EH_``
* identifiers. Consequently, we permit any kind of free text.
*/
export interface RegulatoryElement {
Expand Down Expand Up @@ -348,6 +349,7 @@ export interface GeneElement {
}
/**
* Define Templated Sequence Element class.
*
* A templated sequence is a contiguous genomic sequence found in the gene
* product.
*/
Expand Down Expand Up @@ -402,7 +404,9 @@ export interface LiteralSequenceExpression {
[k: string]: unknown;
}
/**
* Define UnknownGene class. This is primarily intended to represent a
* Define UnknownGene class.
*
* This is primarily intended to represent a
* partner in the result of a fusion partner-agnostic assay, which identifies
* the absence of an expected gene. For example, a FISH break-apart probe may
* indicate rearrangement of an MLL gene, but by design, the test cannot
Expand All @@ -414,6 +418,8 @@ export interface UnknownGeneElement {
type?: "UnknownGeneElement";
}
/**
* Define causative event information for a fusion.
*
* The evaluation of a fusion may be influenced by the underlying mechanism that
* generated the fusion. Often this will be a DNA rearrangement, but it could also be
* a read-through or trans-splicing event.
Expand Down Expand Up @@ -461,7 +467,9 @@ export interface CategoricalFusion {
criticalFunctionalDomains?: FunctionalDomain[] | null;
}
/**
* Define MultiplePossibleGenesElement class. This is primarily intended to
* Define MultiplePossibleGenesElement class.
*
* This is primarily intended to
* represent a partner in a categorical fusion, typifying generalizable
* characteristics of a class of fusions such as retained or lost regulatory elements
* and/or functional domains, often curated from biomedical literature for use in
Expand Down
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies = [
"click",
"boto3",
"botocore",
"fusor ~= 0.2.0",
"fusor ~= 0.3.0",
"cool-seq-tool ~= 0.5.1",
"pydantic == 2.4.2",
"gene-normalizer ~= 0.4.0",
Expand Down

0 comments on commit bb0d4d6

Please sign in to comment.