Documentation
¶
Index ¶
- func BAMsEndpoint(c *gin.Context)
- func DepthCoveragesEndpoint(c *gin.Context)
- func Endpoints() *gin.Engine
- func GeneEndpoint(c *gin.Context)
- func KitEndpoint(c *gin.Context)
- func KitsEndpoint(c *gin.Context)
- func ReadsEndpoint(c *gin.Context)
- func RunServer()
- func SearchGenesEndpoint(c *gin.Context)
- func SearchKitsEndpoint(c *gin.Context)
- func SearchVariantEndpoint(c *gin.Context)
- func VariantsCSVEndpoint(c *gin.Context)
- func VariantsEndpoint(c *gin.Context)
- type DepthCoverage
- type DepthCoveragesResponse
- type ReadCount
- type ReadCountsResponse
- type Variant
- type VariantSearch
- type VariantsResult
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func BAMsEndpoint ¶
BAMsEndpoint returns all loaded BAM files for a given kit ID
func DepthCoveragesEndpoint ¶
DepthCoveragesEndpoint returns the depth coverage for a given kit and exon by database ID
func GeneEndpoint ¶
GeneEndpoint returns details about a given gene passed by database ID
func KitEndpoint ¶
KitEndpoint returns details about a given kit passed by database ID
func KitsEndpoint ¶
KitsEndpoint returns all the kits in the database
func ReadsEndpoint ¶
ReadsEndpoint returns all reads for a given kit ID and exon ID
func SearchGenesEndpoint ¶
SearchGenesEndpoint returns a single gene that matches exactly or partially the HGNC name
func SearchKitsEndpoint ¶
SearchKitsEndpoint returns details about a given kit that matches exactly or partially the given name
func SearchVariantEndpoint ¶
SearchVariantEndpoint returns details about a given variant by exact database ID
func VariantsCSVEndpoint ¶
VariantsCSVEndpoint returns a CSV file response for a given HGNC gene name
func VariantsEndpoint ¶
VariantsEndpoint returns a list of variants that fall inside given a kit and exon database ID
Types ¶
type DepthCoverage ¶
type DepthCoveragesResponse ¶
type DepthCoveragesResponse struct {
KitName string `json:"kitName"`
DepthCoverages []DepthCoverage `json:"depthCoverages"`
}