Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

remove feature_id from ExpressionLevel #818

Merged
merged 7 commits into from
Mar 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/ga4gh/schemas/_protocol_version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# File generated by scripts/process_schemas.py; do not edit
version = '0.6.0a10'
version = '0.6.0a9'
33 changes: 13 additions & 20 deletions python/ga4gh/schemas/ga4gh/rna_quantification_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions python/ga4gh/schemas/ga4gh/rna_quantification_service_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions src/main/proto/ga4gh/rna_quantification.proto
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ message ExpressionLevel {
// Name
string name = 2;

// Id of the feature
string feature_id = 3;

// The associated RnaQuantification
string rna_quantification_id = 4;

Expand Down
6 changes: 3 additions & 3 deletions src/main/proto/ga4gh/rna_quantification_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -158,10 +158,10 @@ message GetRnaQuantificationRequest {
message SearchExpressionLevelsRequest {
// The rnaQuantification to restrict search to.
string rna_quantification_id = 1;

// Only return expressions with any of the specified feature_ids.
repeated string feature_ids = 2;

// Only return expressions with any of the names (strict string matching).
repeated string names = 6;

// Only return ExpressionLevel records with expressions exceeding
// this value. (Defaults to 0.0)
float threshold = 3;
Expand Down