-
Notifications
You must be signed in to change notification settings - Fork 0
ODM-12846: gene summary analytics #500
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 42 commits
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
90eed36
ODM-12847: cell analysis: diff expression
m-smazhevsky ab524ef
ODM-12847: response model fix
m-smazhevsky fbe6d07
Merge branch 'develop' into feature/ODM-12847_diff-expression
m-smazhevsky 745abb6
Merge branch 'develop' into feature/ODM-12847_diff-expression
m-smazhevsky b28773c
Merge branch 'develop' into feature/ODM-12847_diff-expression
m-smazhevsky 5065e71
Merge remote-tracking branch 'origin/develop' into feature/ODM-12847_…
m-smazhevsky 658d76a
ODM-12847: diff expression
m-smazhevsky 2284fdd
ODM-12847: bugfix
m-smazhevsky 1267fd4
ODM-12847: bugfix
m-smazhevsky 10e0d77
ODM-12847: allowing NaN and Infs in sdk?
m-smazhevsky e7eaf5e
ODM-12847: test python gen
m-smazhevsky 7233d7e
ODM-12847: test python gen2
m-smazhevsky bae14d0
ODM-12847: one more version...
m-smazhevsky 28aba9a
ODM-12847: switching back to number
m-smazhevsky 85168b6
ODM-12846: Cell analytics - Gene Summary - added endpoint skeleton fo…
marijan-mihaljev a720ee0
ODM-12846: Cell analytics - Gene Summary - added endpoint skeleton fo…
marijan-mihaljev 76adcb2
ODM-12847: shorten names (to shorten "DifferentialExpressionResultRes…
m-smazhevsky 0ec015d
ODM-12847: Mann–Whitney U test
m-smazhevsky 32ecefe
ODM-12846: Cell analytics - Gene Summary - added GeneSummaryRequest f…
marijan-mihaljev 3d25f6d
ODM-12846: Cell analytics - Gene Summary - added GeneSummaryResponse …
marijan-mihaljev ace5a54
ODM-12846: Cell analytics - Gene Summary - added GeneSummaryRequest a…
marijan-mihaljev 9cbacf4
ODM-12846: Cell analytics - Gene Summary - added GeneSummaryRequest a…
marijan-mihaljev 1b204a1
ODM-12846: Cell analytics - Gene Summary - removed trailing whitespace
marijan-mihaljev 9cbca74
ODM-12846: Cell analytics - Gene Summary - renamed request property
marijan-mihaljev 9654dee
ODM-12846: Cell analytics - Gene Summary - added summary for Curator …
marijan-mihaljev dfc96ec
Merge branch 'feature/ODM-12847_diff-expression' into feature/ODM-128…
marijan-mihaljev 6fdd84b
Merge branch 'develop' into feature/ODM-12847_diff-expression
m-smazhevsky 84f2551
ODM-12847: code review comment
m-smazhevsky 72adc74
Merge branch 'feature/ODM-12847_diff-expression' into feature/ODM-128…
marijan-mihaljev fe37afd
ODM-12846: Cell analytics - Gene Summary - fixed user's endpoint
marijan-mihaljev 431bf0a
ODM-12846: Cell analytics - Gene Summary - fixed user's endpoint
marijan-mihaljev 617cab5
Merge branch 'develop' into feature/ODM-12847_diff-expression
eeliane 54bf9e0
ODM-12847: minor
m-smazhevsky dc94a51
Merge branch 'feature/ODM-12847_diff-expression' into feature/ODM-128…
eeliane 46fa2d7
Merge branch 'develop' into feature/ODM-12847_diff-expression
eeliane ea682e2
Merge branch 'feature/ODM-12847_diff-expression' into feature/ODM-128…
eeliane 3d79e7b
ODM-12846: Cell analytics - Gene Summary - changed analysis to analytics
marijan-mihaljev be1f0cc
ODM-12846: Cell analytics - Gene Summary - renamed gene summary respo…
marijan-mihaljev 012efda
!!ODM-12847: duplicating params description
m-smazhevsky 7ebcc7f
ODM-12846: Cell analytics - Gene Summary - renamed gene summary respo…
marijan-mihaljev 9aaa96a
Merge branch 'feature/ODM-12847_diff-expression' into feature/ODM-128…
marijan-mihaljev 5787d70
ODM-12846: Cell analytics - Gene Summary - update summary and descrip…
marijan-mihaljev 9000cff
ODM-12846: Cell analytics - Gene Summary - Refactor emphasizing on re…
marijan-mihaljev 6e0aae3
Merge branch 'develop' into feature/ODM-12846-gene-summary-analytics
marijan-mihaljev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,57 @@ | ||
| type: object | ||
| properties: | ||
| caseGroup: | ||
| $ref: '#/components/schemas/CellGroupRequest' | ||
| controlGroup: | ||
| $ref: '#/components/schemas/CellGroupRequest' | ||
| exQuery: | ||
| type: string | ||
| example: 'feature=ENSG00000230368,ENSG00000188976' | ||
| limit: | ||
| type: integer | ||
| format: int32 | ||
| description: This parameter determines the number of results to retrieve per page, with the default set at 2000. | ||
| example: 2000 | ||
| offset: | ||
| type: integer | ||
| format: int32 | ||
| description: This parameter allows skipping a specified number of results, with the default set at 0. | ||
| example: 0 | ||
| required: | ||
| - caseGroup | ||
| - controlGroup | ||
| components: | ||
| schemas: | ||
| CellGroupRequest: | ||
| type: object | ||
| properties: | ||
| studyFilter: | ||
| type: string | ||
| example: '"Study Source"=ArrayExpress' | ||
| studyQuery: | ||
| type: string | ||
| example: 'RNA-Seq of human dendritic cells' | ||
| sampleFilter: | ||
| type: string | ||
| example: '"Species or strain"="Homo sapiens"' | ||
| sampleQuery: | ||
| type: string | ||
| example: 'Clozapine' | ||
| libraryFilter: | ||
| type: string | ||
| example: '"Library Type"=RNA-Seq-1' | ||
| libraryQuery: | ||
| type: string | ||
| example: 'illumina HiSeq500' | ||
| preparationFilter: | ||
| type: string | ||
| example: 'Digestion=Trypsin' | ||
| preparationQuery: | ||
| type: string | ||
| example: 'reversed-phase liquid chromatography' | ||
| cellQuery: | ||
| type: string | ||
| example: 'cellType=Macrophage,Monocyte' | ||
| searchSpecificTerms: | ||
| type: boolean | ||
| example: false |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.