igvf-async-client 46.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (282) hide show
  1. igvf_async_client-46.1.0/LICENSE +21 -0
  2. igvf_async_client-46.1.0/PKG-INFO +19 -0
  3. igvf_async_client-46.1.0/README.md +316 -0
  4. igvf_async_client-46.1.0/async_igvf_client/__init__.py +158 -0
  5. igvf_async_client-46.1.0/async_igvf_client/api/__init__.py +5 -0
  6. igvf_async_client-46.1.0/async_igvf_client/api/async_igvf_api.py +57649 -0
  7. igvf_async_client-46.1.0/async_igvf_client/api_client.py +775 -0
  8. igvf_async_client-46.1.0/async_igvf_client/api_response.py +21 -0
  9. igvf_async_client-46.1.0/async_igvf_client/configuration.py +457 -0
  10. igvf_async_client-46.1.0/async_igvf_client/exceptions.py +199 -0
  11. igvf_async_client-46.1.0/async_igvf_client/models/__init__.py +141 -0
  12. igvf_async_client-46.1.0/async_igvf_client/models/access_key.py +166 -0
  13. igvf_async_client-46.1.0/async_igvf_client/models/access_key_results.py +111 -0
  14. igvf_async_client-46.1.0/async_igvf_client/models/alignment_file.py +313 -0
  15. igvf_async_client-46.1.0/async_igvf_client/models/alignment_file_results.py +111 -0
  16. igvf_async_client-46.1.0/async_igvf_client/models/analysis_set.py +241 -0
  17. igvf_async_client-46.1.0/async_igvf_client/models/analysis_set_results.py +111 -0
  18. igvf_async_client-46.1.0/async_igvf_client/models/analysis_step.py +213 -0
  19. igvf_async_client-46.1.0/async_igvf_client/models/analysis_step_results.py +111 -0
  20. igvf_async_client-46.1.0/async_igvf_client/models/analysis_step_version.py +170 -0
  21. igvf_async_client-46.1.0/async_igvf_client/models/analysis_step_version_results.py +111 -0
  22. igvf_async_client-46.1.0/async_igvf_client/models/assay_term.py +217 -0
  23. igvf_async_client-46.1.0/async_igvf_client/models/assay_term_results.py +111 -0
  24. igvf_async_client-46.1.0/async_igvf_client/models/attachment.py +110 -0
  25. igvf_async_client-46.1.0/async_igvf_client/models/attachment1.py +110 -0
  26. igvf_async_client-46.1.0/async_igvf_client/models/auxiliary_set.py +229 -0
  27. igvf_async_client-46.1.0/async_igvf_client/models/auxiliary_set_results.py +111 -0
  28. igvf_async_client-46.1.0/async_igvf_client/models/award.py +230 -0
  29. igvf_async_client-46.1.0/async_igvf_client/models/award_results.py +111 -0
  30. igvf_async_client-46.1.0/async_igvf_client/models/biomarker.py +200 -0
  31. igvf_async_client-46.1.0/async_igvf_client/models/biomarker_results.py +111 -0
  32. igvf_async_client-46.1.0/async_igvf_client/models/configuration_file.py +279 -0
  33. igvf_async_client-46.1.0/async_igvf_client/models/configuration_file_results.py +111 -0
  34. igvf_async_client-46.1.0/async_igvf_client/models/construct_library_set.py +373 -0
  35. igvf_async_client-46.1.0/async_igvf_client/models/construct_library_set_results.py +111 -0
  36. igvf_async_client-46.1.0/async_igvf_client/models/crispr_modification.py +262 -0
  37. igvf_async_client-46.1.0/async_igvf_client/models/crispr_modification_results.py +111 -0
  38. igvf_async_client-46.1.0/async_igvf_client/models/curated_set.py +243 -0
  39. igvf_async_client-46.1.0/async_igvf_client/models/curated_set_results.py +111 -0
  40. igvf_async_client-46.1.0/async_igvf_client/models/degron_modification.py +238 -0
  41. igvf_async_client-46.1.0/async_igvf_client/models/degron_modification_results.py +111 -0
  42. igvf_async_client-46.1.0/async_igvf_client/models/document.py +211 -0
  43. igvf_async_client-46.1.0/async_igvf_client/models/document_results.py +111 -0
  44. igvf_async_client-46.1.0/async_igvf_client/models/gene.py +245 -0
  45. igvf_async_client-46.1.0/async_igvf_client/models/gene_location.py +121 -0
  46. igvf_async_client-46.1.0/async_igvf_client/models/gene_location1.py +108 -0
  47. igvf_async_client-46.1.0/async_igvf_client/models/gene_results.py +111 -0
  48. igvf_async_client-46.1.0/async_igvf_client/models/genome_browser_annotation_file.py +313 -0
  49. igvf_async_client-46.1.0/async_igvf_client/models/genome_browser_annotation_file_results.py +111 -0
  50. igvf_async_client-46.1.0/async_igvf_client/models/human_donor.py +269 -0
  51. igvf_async_client-46.1.0/async_igvf_client/models/human_donor_results.py +111 -0
  52. igvf_async_client-46.1.0/async_igvf_client/models/image.py +187 -0
  53. igvf_async_client-46.1.0/async_igvf_client/models/image_file.py +277 -0
  54. igvf_async_client-46.1.0/async_igvf_client/models/image_file_results.py +111 -0
  55. igvf_async_client-46.1.0/async_igvf_client/models/image_results.py +111 -0
  56. igvf_async_client-46.1.0/async_igvf_client/models/in_vitro_system.py +436 -0
  57. igvf_async_client-46.1.0/async_igvf_client/models/in_vitro_system_results.py +111 -0
  58. igvf_async_client-46.1.0/async_igvf_client/models/institutional_certificate.py +209 -0
  59. igvf_async_client-46.1.0/async_igvf_client/models/institutional_certificate_results.py +111 -0
  60. igvf_async_client-46.1.0/async_igvf_client/models/item.py +1106 -0
  61. igvf_async_client-46.1.0/async_igvf_client/models/item_type.py +86 -0
  62. igvf_async_client-46.1.0/async_igvf_client/models/lab.py +192 -0
  63. igvf_async_client-46.1.0/async_igvf_client/models/lab_results.py +111 -0
  64. igvf_async_client-46.1.0/async_igvf_client/models/limit.py +158 -0
  65. igvf_async_client-46.1.0/async_igvf_client/models/locus.py +121 -0
  66. igvf_async_client-46.1.0/async_igvf_client/models/locus1.py +108 -0
  67. igvf_async_client-46.1.0/async_igvf_client/models/matrix_file.py +305 -0
  68. igvf_async_client-46.1.0/async_igvf_client/models/matrix_file_results.py +111 -0
  69. igvf_async_client-46.1.0/async_igvf_client/models/measurement_set.py +276 -0
  70. igvf_async_client-46.1.0/async_igvf_client/models/measurement_set_results.py +111 -0
  71. igvf_async_client-46.1.0/async_igvf_client/models/model_file.py +281 -0
  72. igvf_async_client-46.1.0/async_igvf_client/models/model_file_results.py +111 -0
  73. igvf_async_client-46.1.0/async_igvf_client/models/model_set.py +138 -0
  74. igvf_async_client-46.1.0/async_igvf_client/models/model_set_results.py +111 -0
  75. igvf_async_client-46.1.0/async_igvf_client/models/multiplexed_sample.py +189 -0
  76. igvf_async_client-46.1.0/async_igvf_client/models/multiplexed_sample_results.py +111 -0
  77. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response.py +161 -0
  78. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_columns_value.py +87 -0
  79. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_facet_groups_inner.py +91 -0
  80. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_facets_inner.py +107 -0
  81. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_facets_inner_terms_inner.py +89 -0
  82. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_filters_inner.py +91 -0
  83. igvf_async_client-46.1.0/async_igvf_client/models/no_results_response_sort_value.py +89 -0
  84. igvf_async_client-46.1.0/async_igvf_client/models/open_reading_frame.py +200 -0
  85. igvf_async_client-46.1.0/async_igvf_client/models/open_reading_frame_results.py +111 -0
  86. igvf_async_client-46.1.0/async_igvf_client/models/page.py +203 -0
  87. igvf_async_client-46.1.0/async_igvf_client/models/page_layout.py +95 -0
  88. igvf_async_client-46.1.0/async_igvf_client/models/page_layout_components.py +93 -0
  89. igvf_async_client-46.1.0/async_igvf_client/models/page_results.py +111 -0
  90. igvf_async_client-46.1.0/async_igvf_client/models/phenotype_term.py +198 -0
  91. igvf_async_client-46.1.0/async_igvf_client/models/phenotype_term_results.py +111 -0
  92. igvf_async_client-46.1.0/async_igvf_client/models/phenotypic_feature.py +184 -0
  93. igvf_async_client-46.1.0/async_igvf_client/models/phenotypic_feature_results.py +111 -0
  94. igvf_async_client-46.1.0/async_igvf_client/models/platform_term.py +223 -0
  95. igvf_async_client-46.1.0/async_igvf_client/models/platform_term_results.py +111 -0
  96. igvf_async_client-46.1.0/async_igvf_client/models/prediction_set.py +158 -0
  97. igvf_async_client-46.1.0/async_igvf_client/models/prediction_set_results.py +111 -0
  98. igvf_async_client-46.1.0/async_igvf_client/models/primary_cell.py +389 -0
  99. igvf_async_client-46.1.0/async_igvf_client/models/primary_cell_results.py +111 -0
  100. igvf_async_client-46.1.0/async_igvf_client/models/publication.py +232 -0
  101. igvf_async_client-46.1.0/async_igvf_client/models/publication_results.py +111 -0
  102. igvf_async_client-46.1.0/async_igvf_client/models/reference_file.py +325 -0
  103. igvf_async_client-46.1.0/async_igvf_client/models/reference_file_results.py +111 -0
  104. igvf_async_client-46.1.0/async_igvf_client/models/related_donor.py +96 -0
  105. igvf_async_client-46.1.0/async_igvf_client/models/rodent_donor.py +277 -0
  106. igvf_async_client-46.1.0/async_igvf_client/models/rodent_donor_results.py +111 -0
  107. igvf_async_client-46.1.0/async_igvf_client/models/sample_term.py +208 -0
  108. igvf_async_client-46.1.0/async_igvf_client/models/sample_term_results.py +111 -0
  109. igvf_async_client-46.1.0/async_igvf_client/models/search_facet.py +91 -0
  110. igvf_async_client-46.1.0/async_igvf_client/models/search_result_item.py +1106 -0
  111. igvf_async_client-46.1.0/async_igvf_client/models/search_results.py +111 -0
  112. igvf_async_client-46.1.0/async_igvf_client/models/sequence_file.py +348 -0
  113. igvf_async_client-46.1.0/async_igvf_client/models/sequence_file_results.py +111 -0
  114. igvf_async_client-46.1.0/async_igvf_client/models/signal_file.py +333 -0
  115. igvf_async_client-46.1.0/async_igvf_client/models/signal_file_results.py +111 -0
  116. igvf_async_client-46.1.0/async_igvf_client/models/software.py +209 -0
  117. igvf_async_client-46.1.0/async_igvf_client/models/software_results.py +111 -0
  118. igvf_async_client-46.1.0/async_igvf_client/models/software_version.py +167 -0
  119. igvf_async_client-46.1.0/async_igvf_client/models/software_version_results.py +111 -0
  120. igvf_async_client-46.1.0/async_igvf_client/models/source.py +188 -0
  121. igvf_async_client-46.1.0/async_igvf_client/models/source_results.py +111 -0
  122. igvf_async_client-46.1.0/async_igvf_client/models/tabular_file.py +317 -0
  123. igvf_async_client-46.1.0/async_igvf_client/models/tabular_file_results.py +111 -0
  124. igvf_async_client-46.1.0/async_igvf_client/models/technical_sample.py +321 -0
  125. igvf_async_client-46.1.0/async_igvf_client/models/technical_sample_results.py +111 -0
  126. igvf_async_client-46.1.0/async_igvf_client/models/tile.py +102 -0
  127. igvf_async_client-46.1.0/async_igvf_client/models/tissue.py +415 -0
  128. igvf_async_client-46.1.0/async_igvf_client/models/tissue_results.py +111 -0
  129. igvf_async_client-46.1.0/async_igvf_client/models/treatment.py +294 -0
  130. igvf_async_client-46.1.0/async_igvf_client/models/treatment_results.py +111 -0
  131. igvf_async_client-46.1.0/async_igvf_client/models/user.py +220 -0
  132. igvf_async_client-46.1.0/async_igvf_client/models/user_results.py +111 -0
  133. igvf_async_client-46.1.0/async_igvf_client/models/whole_organism.py +138 -0
  134. igvf_async_client-46.1.0/async_igvf_client/models/whole_organism_results.py +111 -0
  135. igvf_async_client-46.1.0/async_igvf_client/models/workflow.py +231 -0
  136. igvf_async_client-46.1.0/async_igvf_client/models/workflow_results.py +111 -0
  137. igvf_async_client-46.1.0/async_igvf_client/py.typed +0 -0
  138. igvf_async_client-46.1.0/async_igvf_client/rest.py +215 -0
  139. igvf_async_client-46.1.0/igvf_async_client/__init__.py +158 -0
  140. igvf_async_client-46.1.0/igvf_async_client/api/__init__.py +5 -0
  141. igvf_async_client-46.1.0/igvf_async_client/api/async_igvf_api.py +57649 -0
  142. igvf_async_client-46.1.0/igvf_async_client/api_client.py +775 -0
  143. igvf_async_client-46.1.0/igvf_async_client/api_response.py +21 -0
  144. igvf_async_client-46.1.0/igvf_async_client/configuration.py +457 -0
  145. igvf_async_client-46.1.0/igvf_async_client/exceptions.py +199 -0
  146. igvf_async_client-46.1.0/igvf_async_client/models/__init__.py +141 -0
  147. igvf_async_client-46.1.0/igvf_async_client/models/access_key.py +166 -0
  148. igvf_async_client-46.1.0/igvf_async_client/models/access_key_results.py +111 -0
  149. igvf_async_client-46.1.0/igvf_async_client/models/alignment_file.py +313 -0
  150. igvf_async_client-46.1.0/igvf_async_client/models/alignment_file_results.py +111 -0
  151. igvf_async_client-46.1.0/igvf_async_client/models/analysis_set.py +241 -0
  152. igvf_async_client-46.1.0/igvf_async_client/models/analysis_set_results.py +111 -0
  153. igvf_async_client-46.1.0/igvf_async_client/models/analysis_step.py +213 -0
  154. igvf_async_client-46.1.0/igvf_async_client/models/analysis_step_results.py +111 -0
  155. igvf_async_client-46.1.0/igvf_async_client/models/analysis_step_version.py +170 -0
  156. igvf_async_client-46.1.0/igvf_async_client/models/analysis_step_version_results.py +111 -0
  157. igvf_async_client-46.1.0/igvf_async_client/models/assay_term.py +217 -0
  158. igvf_async_client-46.1.0/igvf_async_client/models/assay_term_results.py +111 -0
  159. igvf_async_client-46.1.0/igvf_async_client/models/attachment.py +110 -0
  160. igvf_async_client-46.1.0/igvf_async_client/models/attachment1.py +110 -0
  161. igvf_async_client-46.1.0/igvf_async_client/models/auxiliary_set.py +229 -0
  162. igvf_async_client-46.1.0/igvf_async_client/models/auxiliary_set_results.py +111 -0
  163. igvf_async_client-46.1.0/igvf_async_client/models/award.py +230 -0
  164. igvf_async_client-46.1.0/igvf_async_client/models/award_results.py +111 -0
  165. igvf_async_client-46.1.0/igvf_async_client/models/biomarker.py +200 -0
  166. igvf_async_client-46.1.0/igvf_async_client/models/biomarker_results.py +111 -0
  167. igvf_async_client-46.1.0/igvf_async_client/models/configuration_file.py +279 -0
  168. igvf_async_client-46.1.0/igvf_async_client/models/configuration_file_results.py +111 -0
  169. igvf_async_client-46.1.0/igvf_async_client/models/construct_library_set.py +373 -0
  170. igvf_async_client-46.1.0/igvf_async_client/models/construct_library_set_results.py +111 -0
  171. igvf_async_client-46.1.0/igvf_async_client/models/crispr_modification.py +262 -0
  172. igvf_async_client-46.1.0/igvf_async_client/models/crispr_modification_results.py +111 -0
  173. igvf_async_client-46.1.0/igvf_async_client/models/curated_set.py +243 -0
  174. igvf_async_client-46.1.0/igvf_async_client/models/curated_set_results.py +111 -0
  175. igvf_async_client-46.1.0/igvf_async_client/models/degron_modification.py +238 -0
  176. igvf_async_client-46.1.0/igvf_async_client/models/degron_modification_results.py +111 -0
  177. igvf_async_client-46.1.0/igvf_async_client/models/document.py +211 -0
  178. igvf_async_client-46.1.0/igvf_async_client/models/document_results.py +111 -0
  179. igvf_async_client-46.1.0/igvf_async_client/models/gene.py +245 -0
  180. igvf_async_client-46.1.0/igvf_async_client/models/gene_location.py +121 -0
  181. igvf_async_client-46.1.0/igvf_async_client/models/gene_location1.py +108 -0
  182. igvf_async_client-46.1.0/igvf_async_client/models/gene_results.py +111 -0
  183. igvf_async_client-46.1.0/igvf_async_client/models/genome_browser_annotation_file.py +313 -0
  184. igvf_async_client-46.1.0/igvf_async_client/models/genome_browser_annotation_file_results.py +111 -0
  185. igvf_async_client-46.1.0/igvf_async_client/models/human_donor.py +269 -0
  186. igvf_async_client-46.1.0/igvf_async_client/models/human_donor_results.py +111 -0
  187. igvf_async_client-46.1.0/igvf_async_client/models/image.py +187 -0
  188. igvf_async_client-46.1.0/igvf_async_client/models/image_file.py +277 -0
  189. igvf_async_client-46.1.0/igvf_async_client/models/image_file_results.py +111 -0
  190. igvf_async_client-46.1.0/igvf_async_client/models/image_results.py +111 -0
  191. igvf_async_client-46.1.0/igvf_async_client/models/in_vitro_system.py +436 -0
  192. igvf_async_client-46.1.0/igvf_async_client/models/in_vitro_system_results.py +111 -0
  193. igvf_async_client-46.1.0/igvf_async_client/models/institutional_certificate.py +209 -0
  194. igvf_async_client-46.1.0/igvf_async_client/models/institutional_certificate_results.py +111 -0
  195. igvf_async_client-46.1.0/igvf_async_client/models/item.py +1106 -0
  196. igvf_async_client-46.1.0/igvf_async_client/models/item_type.py +86 -0
  197. igvf_async_client-46.1.0/igvf_async_client/models/lab.py +192 -0
  198. igvf_async_client-46.1.0/igvf_async_client/models/lab_results.py +111 -0
  199. igvf_async_client-46.1.0/igvf_async_client/models/limit.py +158 -0
  200. igvf_async_client-46.1.0/igvf_async_client/models/locus.py +121 -0
  201. igvf_async_client-46.1.0/igvf_async_client/models/locus1.py +108 -0
  202. igvf_async_client-46.1.0/igvf_async_client/models/matrix_file.py +305 -0
  203. igvf_async_client-46.1.0/igvf_async_client/models/matrix_file_results.py +111 -0
  204. igvf_async_client-46.1.0/igvf_async_client/models/measurement_set.py +276 -0
  205. igvf_async_client-46.1.0/igvf_async_client/models/measurement_set_results.py +111 -0
  206. igvf_async_client-46.1.0/igvf_async_client/models/model_file.py +281 -0
  207. igvf_async_client-46.1.0/igvf_async_client/models/model_file_results.py +111 -0
  208. igvf_async_client-46.1.0/igvf_async_client/models/model_set.py +138 -0
  209. igvf_async_client-46.1.0/igvf_async_client/models/model_set_results.py +111 -0
  210. igvf_async_client-46.1.0/igvf_async_client/models/multiplexed_sample.py +189 -0
  211. igvf_async_client-46.1.0/igvf_async_client/models/multiplexed_sample_results.py +111 -0
  212. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response.py +161 -0
  213. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_columns_value.py +87 -0
  214. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_facet_groups_inner.py +91 -0
  215. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_facets_inner.py +107 -0
  216. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_facets_inner_terms_inner.py +89 -0
  217. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_filters_inner.py +91 -0
  218. igvf_async_client-46.1.0/igvf_async_client/models/no_results_response_sort_value.py +89 -0
  219. igvf_async_client-46.1.0/igvf_async_client/models/open_reading_frame.py +200 -0
  220. igvf_async_client-46.1.0/igvf_async_client/models/open_reading_frame_results.py +111 -0
  221. igvf_async_client-46.1.0/igvf_async_client/models/page.py +203 -0
  222. igvf_async_client-46.1.0/igvf_async_client/models/page_layout.py +95 -0
  223. igvf_async_client-46.1.0/igvf_async_client/models/page_layout_components.py +93 -0
  224. igvf_async_client-46.1.0/igvf_async_client/models/page_results.py +111 -0
  225. igvf_async_client-46.1.0/igvf_async_client/models/phenotype_term.py +198 -0
  226. igvf_async_client-46.1.0/igvf_async_client/models/phenotype_term_results.py +111 -0
  227. igvf_async_client-46.1.0/igvf_async_client/models/phenotypic_feature.py +184 -0
  228. igvf_async_client-46.1.0/igvf_async_client/models/phenotypic_feature_results.py +111 -0
  229. igvf_async_client-46.1.0/igvf_async_client/models/platform_term.py +223 -0
  230. igvf_async_client-46.1.0/igvf_async_client/models/platform_term_results.py +111 -0
  231. igvf_async_client-46.1.0/igvf_async_client/models/prediction_set.py +158 -0
  232. igvf_async_client-46.1.0/igvf_async_client/models/prediction_set_results.py +111 -0
  233. igvf_async_client-46.1.0/igvf_async_client/models/primary_cell.py +389 -0
  234. igvf_async_client-46.1.0/igvf_async_client/models/primary_cell_results.py +111 -0
  235. igvf_async_client-46.1.0/igvf_async_client/models/publication.py +232 -0
  236. igvf_async_client-46.1.0/igvf_async_client/models/publication_results.py +111 -0
  237. igvf_async_client-46.1.0/igvf_async_client/models/reference_file.py +325 -0
  238. igvf_async_client-46.1.0/igvf_async_client/models/reference_file_results.py +111 -0
  239. igvf_async_client-46.1.0/igvf_async_client/models/related_donor.py +96 -0
  240. igvf_async_client-46.1.0/igvf_async_client/models/rodent_donor.py +277 -0
  241. igvf_async_client-46.1.0/igvf_async_client/models/rodent_donor_results.py +111 -0
  242. igvf_async_client-46.1.0/igvf_async_client/models/sample_term.py +208 -0
  243. igvf_async_client-46.1.0/igvf_async_client/models/sample_term_results.py +111 -0
  244. igvf_async_client-46.1.0/igvf_async_client/models/search_facet.py +91 -0
  245. igvf_async_client-46.1.0/igvf_async_client/models/search_result_item.py +1106 -0
  246. igvf_async_client-46.1.0/igvf_async_client/models/search_results.py +111 -0
  247. igvf_async_client-46.1.0/igvf_async_client/models/sequence_file.py +348 -0
  248. igvf_async_client-46.1.0/igvf_async_client/models/sequence_file_results.py +111 -0
  249. igvf_async_client-46.1.0/igvf_async_client/models/signal_file.py +333 -0
  250. igvf_async_client-46.1.0/igvf_async_client/models/signal_file_results.py +111 -0
  251. igvf_async_client-46.1.0/igvf_async_client/models/software.py +209 -0
  252. igvf_async_client-46.1.0/igvf_async_client/models/software_results.py +111 -0
  253. igvf_async_client-46.1.0/igvf_async_client/models/software_version.py +167 -0
  254. igvf_async_client-46.1.0/igvf_async_client/models/software_version_results.py +111 -0
  255. igvf_async_client-46.1.0/igvf_async_client/models/source.py +188 -0
  256. igvf_async_client-46.1.0/igvf_async_client/models/source_results.py +111 -0
  257. igvf_async_client-46.1.0/igvf_async_client/models/tabular_file.py +317 -0
  258. igvf_async_client-46.1.0/igvf_async_client/models/tabular_file_results.py +111 -0
  259. igvf_async_client-46.1.0/igvf_async_client/models/technical_sample.py +321 -0
  260. igvf_async_client-46.1.0/igvf_async_client/models/technical_sample_results.py +111 -0
  261. igvf_async_client-46.1.0/igvf_async_client/models/tile.py +102 -0
  262. igvf_async_client-46.1.0/igvf_async_client/models/tissue.py +415 -0
  263. igvf_async_client-46.1.0/igvf_async_client/models/tissue_results.py +111 -0
  264. igvf_async_client-46.1.0/igvf_async_client/models/treatment.py +294 -0
  265. igvf_async_client-46.1.0/igvf_async_client/models/treatment_results.py +111 -0
  266. igvf_async_client-46.1.0/igvf_async_client/models/user.py +220 -0
  267. igvf_async_client-46.1.0/igvf_async_client/models/user_results.py +111 -0
  268. igvf_async_client-46.1.0/igvf_async_client/models/whole_organism.py +138 -0
  269. igvf_async_client-46.1.0/igvf_async_client/models/whole_organism_results.py +111 -0
  270. igvf_async_client-46.1.0/igvf_async_client/models/workflow.py +231 -0
  271. igvf_async_client-46.1.0/igvf_async_client/models/workflow_results.py +111 -0
  272. igvf_async_client-46.1.0/igvf_async_client/py.typed +0 -0
  273. igvf_async_client-46.1.0/igvf_async_client/rest.py +215 -0
  274. igvf_async_client-46.1.0/igvf_async_client.egg-info/PKG-INFO +19 -0
  275. igvf_async_client-46.1.0/igvf_async_client.egg-info/SOURCES.txt +281 -0
  276. igvf_async_client-46.1.0/igvf_async_client.egg-info/dependency_links.txt +1 -0
  277. igvf_async_client-46.1.0/igvf_async_client.egg-info/requires.txt +6 -0
  278. igvf_async_client-46.1.0/igvf_async_client.egg-info/top_level.txt +2 -0
  279. igvf_async_client-46.1.0/pyproject.toml +73 -0
  280. igvf_async_client-46.1.0/setup.cfg +7 -0
  281. igvf_async_client-46.1.0/setup.py +51 -0
  282. igvf_async_client-46.1.0/test/test_endpoint.py +11 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 IGVF-DACC
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: igvf-async-client
3
+ Version: 46.1.0
4
+ Summary: IGVF Project API
5
+ Home-page: https://github.com/iGVF-DACC/igvf-async-python-client
6
+ Author: IGVF DACC
7
+ Author-email: encode-help@lists.stanford.edu
8
+ Keywords: OpenAPI,OpenAPI-Generator,IGVF Project API
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+ Requires-Dist: urllib3<2.1.0,>=1.25.3
12
+ Requires-Dist: python-dateutil
13
+ Requires-Dist: aiohttp>=3.0.0
14
+ Requires-Dist: aiohttp-retry>=2.8.3
15
+ Requires-Dist: pydantic>=2
16
+ Requires-Dist: typing-extensions>=4.7.1
17
+
18
+ Autogenerated async Python client for the IGVF API
19
+
@@ -0,0 +1,316 @@
1
+ igvf-async-client
2
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
3
+
4
+ This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
5
+
6
+ - API version: 46.1.0
7
+ - Package version: 46.1.0
8
+ - Generator version: 7.8.0
9
+ - Build package: org.openapitools.codegen.languages.PythonClientCodegen
10
+
11
+ ## Requirements.
12
+
13
+ Python 3.7+
14
+
15
+ ## Installation & Usage
16
+ ### pip install
17
+
18
+ If the python package is hosted on a repository, you can install directly using:
19
+
20
+ ```sh
21
+ pip install git+https://github.com/IGVF-DACC/igvf-async-python-client.git
22
+ ```
23
+ (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/IGVF-DACC/igvf-async-python-client.git`)
24
+
25
+ Then import the package:
26
+ ```python
27
+ import igvf_async_client
28
+ ```
29
+
30
+ ### Setuptools
31
+
32
+ Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
33
+
34
+ ```sh
35
+ python setup.py install --user
36
+ ```
37
+ (or `sudo python setup.py install` to install the package for all users)
38
+
39
+ Then import the package:
40
+ ```python
41
+ import igvf_async_client
42
+ ```
43
+
44
+ ### Tests
45
+
46
+ Execute `pytest` to run the tests.
47
+
48
+ ## Getting Started
49
+
50
+ Please follow the [installation procedure](#installation--usage) and then run the following:
51
+
52
+ ```python
53
+
54
+ import igvf_async_client
55
+ from igvf_async_client.rest import ApiException
56
+ from pprint import pprint
57
+
58
+ # Defining the host is optional and defaults to https://api.data.igvf.org
59
+ # See configuration.py for a list of all supported configuration parameters.
60
+ configuration = igvf_async_client.Configuration(
61
+ host = "https://api.data.igvf.org"
62
+ )
63
+
64
+ # The client must configure the authentication and authorization parameters
65
+ # in accordance with the API server security policy.
66
+ # Examples for each auth method are provided below, use the example that
67
+ # satisfies your auth use case.
68
+
69
+ # Configure HTTP basic authorization: basicAuth
70
+ configuration = igvf_async_client.Configuration(
71
+ access_key = os.environ["IGVF_ACCESS_KEY"],
72
+ secret_access_key = os.environ["IGVF_SECRET_ACCESS_KEY"]
73
+ )
74
+
75
+
76
+ # Enter a context with an instance of the API client
77
+ async with igvf_async_client.ApiClient(configuration) as api_client:
78
+ # Create an instance of the API class
79
+ api_instance = igvf_async_client.AsyncIgvfApi(api_client)
80
+ query = 'variant flowfish jurkat' # str | Query string for searching. (optional)
81
+ limit = igvf_async_client.Limit() # Limit | Maximum number of results to return. Default is 25. Use 'all' for all results. (optional)
82
+ sort = ['-file_size'] # List[str] | Fields to sort results by. Prefix with '-' for descending order. Can be repeated for multiple sort fields. Does not work with limit=all. (optional)
83
+ id = ['id_example'] # List[str] | Filter by @id (optional)
84
+ access_key_id = ['access_key_id_example'] # List[str] | Filter by access_key_id (optional)
85
+ aliases = ['aliases_example'] # List[str] | Filter by aliases (optional)
86
+ creation_timestamp = ['creation_timestamp_example'] # List[str] | Filter by creation_timestamp (optional)
87
+ description = ['description_example'] # List[str] | Filter by description (optional)
88
+ notes = ['notes_example'] # List[str] | Filter by notes (optional)
89
+ secret_access_key_hash = ['secret_access_key_hash_example'] # List[str] | Filter by secret_access_key_hash (optional)
90
+ status = ['status_example'] # List[str] | Filter by status (optional)
91
+ submitted_by_id = ['submitted_by_id_example'] # List[str] | Filter by submitted_by.@id (optional)
92
+ submitted_by_title = ['submitted_by_title_example'] # List[str] | Filter by submitted_by.title (optional)
93
+ submitter_comment = ['submitter_comment_example'] # List[str] | Filter by submitter_comment (optional)
94
+ summary = ['summary_example'] # List[str] | Filter by summary (optional)
95
+ user = ['user_example'] # List[str] | Filter by user (optional)
96
+ uuid = ['uuid_example'] # List[str] | Filter by uuid (optional)
97
+
98
+ try:
99
+ # List items in the AccessKey collection.
100
+ api_response = await api_instance.access_keys(query=query, limit=limit, sort=sort, id=id, access_key_id=access_key_id, aliases=aliases, creation_timestamp=creation_timestamp, description=description, notes=notes, secret_access_key_hash=secret_access_key_hash, status=status, submitted_by_id=submitted_by_id, submitted_by_title=submitted_by_title, submitter_comment=submitter_comment, summary=summary, user=user, uuid=uuid)
101
+ print("The response of AsyncIgvfApi->access_keys:\n")
102
+ pprint(api_response)
103
+ except ApiException as e:
104
+ print("Exception when calling AsyncIgvfApi->access_keys: %s\n" % e)
105
+
106
+ ```
107
+
108
+ ## Documentation for API Endpoints
109
+
110
+ All URIs are relative to *https://api.data.igvf.org*
111
+
112
+ Class | Method | HTTP request | Description
113
+ ------------ | ------------- | ------------- | -------------
114
+ *AsyncIgvfApi* | [**access_keys**](docs/AsyncIgvfApi.md#access_keys) | **GET** /access-keys/@@listing | List items in the AccessKey collection.
115
+ *AsyncIgvfApi* | [**alignment_files**](docs/AsyncIgvfApi.md#alignment_files) | **GET** /alignment-files/@@listing | List items in the AlignmentFile collection.
116
+ *AsyncIgvfApi* | [**analysis_sets**](docs/AsyncIgvfApi.md#analysis_sets) | **GET** /analysis-sets/@@listing | List items in the AnalysisSet collection.
117
+ *AsyncIgvfApi* | [**analysis_step_versions**](docs/AsyncIgvfApi.md#analysis_step_versions) | **GET** /analysis-step-versions/@@listing | List items in the AnalysisStepVersion collection.
118
+ *AsyncIgvfApi* | [**analysis_steps**](docs/AsyncIgvfApi.md#analysis_steps) | **GET** /analysis-steps/@@listing | List items in the AnalysisStep collection.
119
+ *AsyncIgvfApi* | [**assay_terms**](docs/AsyncIgvfApi.md#assay_terms) | **GET** /assay-terms/@@listing | List items in the AssayTerm collection.
120
+ *AsyncIgvfApi* | [**auxiliary_sets**](docs/AsyncIgvfApi.md#auxiliary_sets) | **GET** /auxiliary-sets/@@listing | List items in the AuxiliarySet collection.
121
+ *AsyncIgvfApi* | [**awards**](docs/AsyncIgvfApi.md#awards) | **GET** /awards/@@listing | List items in the Award collection.
122
+ *AsyncIgvfApi* | [**batch_download**](docs/AsyncIgvfApi.md#batch_download) | **GET** /batch-download | List files to download based on search query. All results are returned.
123
+ *AsyncIgvfApi* | [**biomarkers**](docs/AsyncIgvfApi.md#biomarkers) | **GET** /biomarkers/@@listing | List items in the Biomarker collection.
124
+ *AsyncIgvfApi* | [**configuration_files**](docs/AsyncIgvfApi.md#configuration_files) | **GET** /configuration-files/@@listing | List items in the ConfigurationFile collection.
125
+ *AsyncIgvfApi* | [**construct_library_sets**](docs/AsyncIgvfApi.md#construct_library_sets) | **GET** /construct-library-sets/@@listing | List items in the ConstructLibrarySet collection.
126
+ *AsyncIgvfApi* | [**crispr_modifications**](docs/AsyncIgvfApi.md#crispr_modifications) | **GET** /crispr-modifications/@@listing | List items in the CrisprModification collection.
127
+ *AsyncIgvfApi* | [**curated_sets**](docs/AsyncIgvfApi.md#curated_sets) | **GET** /curated-sets/@@listing | List items in the CuratedSet collection.
128
+ *AsyncIgvfApi* | [**degron_modifications**](docs/AsyncIgvfApi.md#degron_modifications) | **GET** /degron-modifications/@@listing | List items in the DegronModification collection.
129
+ *AsyncIgvfApi* | [**documents**](docs/AsyncIgvfApi.md#documents) | **GET** /documents/@@listing | List items in the Document collection.
130
+ *AsyncIgvfApi* | [**download**](docs/AsyncIgvfApi.md#download) | **GET** /{file_id}/@@download | Download file.
131
+ *AsyncIgvfApi* | [**genes**](docs/AsyncIgvfApi.md#genes) | **GET** /genes/@@listing | List items in the Gene collection.
132
+ *AsyncIgvfApi* | [**genome_browser_annotation_files**](docs/AsyncIgvfApi.md#genome_browser_annotation_files) | **GET** /genome-browser-annotation-files/@@listing | List items in the GenomeBrowserAnnotationFile collection.
133
+ *AsyncIgvfApi* | [**get_by_id**](docs/AsyncIgvfApi.md#get_by_id) | **GET** /{resource_id} | Get item information
134
+ *AsyncIgvfApi* | [**human_donors**](docs/AsyncIgvfApi.md#human_donors) | **GET** /human-donors/@@listing | List items in the HumanDonor collection.
135
+ *AsyncIgvfApi* | [**image_files**](docs/AsyncIgvfApi.md#image_files) | **GET** /image-files/@@listing | List items in the ImageFile collection.
136
+ *AsyncIgvfApi* | [**images**](docs/AsyncIgvfApi.md#images) | **GET** /images/@@listing | List items in the Image collection.
137
+ *AsyncIgvfApi* | [**in_vitro_systems**](docs/AsyncIgvfApi.md#in_vitro_systems) | **GET** /in-vitro-systems/@@listing | List items in the InVitroSystem collection.
138
+ *AsyncIgvfApi* | [**institutional_certificates**](docs/AsyncIgvfApi.md#institutional_certificates) | **GET** /institutional-certificates/@@listing | List items in the InstitutionalCertificate collection.
139
+ *AsyncIgvfApi* | [**labs**](docs/AsyncIgvfApi.md#labs) | **GET** /labs/@@listing | List items in the Lab collection.
140
+ *AsyncIgvfApi* | [**matrix_files**](docs/AsyncIgvfApi.md#matrix_files) | **GET** /matrix-files/@@listing | List items in the MatrixFile collection.
141
+ *AsyncIgvfApi* | [**measurement_sets**](docs/AsyncIgvfApi.md#measurement_sets) | **GET** /measurement-sets/@@listing | List items in the MeasurementSet collection.
142
+ *AsyncIgvfApi* | [**model_files**](docs/AsyncIgvfApi.md#model_files) | **GET** /model-files/@@listing | List items in the ModelFile collection.
143
+ *AsyncIgvfApi* | [**model_sets**](docs/AsyncIgvfApi.md#model_sets) | **GET** /model-sets/@@listing | List items in the ModelSet collection.
144
+ *AsyncIgvfApi* | [**multiplexed_samples**](docs/AsyncIgvfApi.md#multiplexed_samples) | **GET** /multiplexed-samples/@@listing | List items in the MultiplexedSample collection.
145
+ *AsyncIgvfApi* | [**open_reading_frames**](docs/AsyncIgvfApi.md#open_reading_frames) | **GET** /open-reading-frames/@@listing | List items in the OpenReadingFrame collection.
146
+ *AsyncIgvfApi* | [**pages**](docs/AsyncIgvfApi.md#pages) | **GET** /pages/@@listing | List items in the Page collection.
147
+ *AsyncIgvfApi* | [**phenotype_terms**](docs/AsyncIgvfApi.md#phenotype_terms) | **GET** /phenotype-terms/@@listing | List items in the PhenotypeTerm collection.
148
+ *AsyncIgvfApi* | [**phenotypic_features**](docs/AsyncIgvfApi.md#phenotypic_features) | **GET** /phenotypic-features/@@listing | List items in the PhenotypicFeature collection.
149
+ *AsyncIgvfApi* | [**platform_terms**](docs/AsyncIgvfApi.md#platform_terms) | **GET** /platform-terms/@@listing | List items in the PlatformTerm collection.
150
+ *AsyncIgvfApi* | [**prediction_sets**](docs/AsyncIgvfApi.md#prediction_sets) | **GET** /prediction-sets/@@listing | List items in the PredictionSet collection.
151
+ *AsyncIgvfApi* | [**primary_cells**](docs/AsyncIgvfApi.md#primary_cells) | **GET** /primary-cells/@@listing | List items in the PrimaryCell collection.
152
+ *AsyncIgvfApi* | [**publications**](docs/AsyncIgvfApi.md#publications) | **GET** /publications/@@listing | List items in the Publication collection.
153
+ *AsyncIgvfApi* | [**reference_files**](docs/AsyncIgvfApi.md#reference_files) | **GET** /reference-files/@@listing | List items in the ReferenceFile collection.
154
+ *AsyncIgvfApi* | [**report**](docs/AsyncIgvfApi.md#report) | **GET** /multireport.tsv | Generate a report based on search query. All results are returned.
155
+ *AsyncIgvfApi* | [**rodent_donors**](docs/AsyncIgvfApi.md#rodent_donors) | **GET** /rodent-donors/@@listing | List items in the RodentDonor collection.
156
+ *AsyncIgvfApi* | [**sample_terms**](docs/AsyncIgvfApi.md#sample_terms) | **GET** /sample-terms/@@listing | List items in the SampleTerm collection.
157
+ *AsyncIgvfApi* | [**schema_for_item_type**](docs/AsyncIgvfApi.md#schema_for_item_type) | **GET** /profiles/{item_type} | Retrieve JSON schema for item type
158
+ *AsyncIgvfApi* | [**schemas**](docs/AsyncIgvfApi.md#schemas) | **GET** /profiles | Retrieve JSON schemas for all item types
159
+ *AsyncIgvfApi* | [**search**](docs/AsyncIgvfApi.md#search) | **GET** /search | Search for items in the IGVF Project.
160
+ *AsyncIgvfApi* | [**sequence_files**](docs/AsyncIgvfApi.md#sequence_files) | **GET** /sequence-files/@@listing | List items in the SequenceFile collection.
161
+ *AsyncIgvfApi* | [**signal_files**](docs/AsyncIgvfApi.md#signal_files) | **GET** /signal-files/@@listing | List items in the SignalFile collection.
162
+ *AsyncIgvfApi* | [**software**](docs/AsyncIgvfApi.md#software) | **GET** /software/@@listing | List items in the Software collection.
163
+ *AsyncIgvfApi* | [**software_versions**](docs/AsyncIgvfApi.md#software_versions) | **GET** /software-versions/@@listing | List items in the SoftwareVersion collection.
164
+ *AsyncIgvfApi* | [**sources**](docs/AsyncIgvfApi.md#sources) | **GET** /sources/@@listing | List items in the Source collection.
165
+ *AsyncIgvfApi* | [**tabular_files**](docs/AsyncIgvfApi.md#tabular_files) | **GET** /tabular-files/@@listing | List items in the TabularFile collection.
166
+ *AsyncIgvfApi* | [**technical_samples**](docs/AsyncIgvfApi.md#technical_samples) | **GET** /technical-samples/@@listing | List items in the TechnicalSample collection.
167
+ *AsyncIgvfApi* | [**tissues**](docs/AsyncIgvfApi.md#tissues) | **GET** /tissues/@@listing | List items in the Tissue collection.
168
+ *AsyncIgvfApi* | [**treatments**](docs/AsyncIgvfApi.md#treatments) | **GET** /treatments/@@listing | List items in the Treatment collection.
169
+ *AsyncIgvfApi* | [**users**](docs/AsyncIgvfApi.md#users) | **GET** /users/@@listing | List items in the User collection.
170
+ *AsyncIgvfApi* | [**whole_organisms**](docs/AsyncIgvfApi.md#whole_organisms) | **GET** /whole-organisms/@@listing | List items in the WholeOrganism collection.
171
+ *AsyncIgvfApi* | [**workflows**](docs/AsyncIgvfApi.md#workflows) | **GET** /workflows/@@listing | List items in the Workflow collection.
172
+
173
+
174
+ ## Documentation For Models
175
+
176
+ - [AccessKey](docs/AccessKey.md)
177
+ - [AccessKeyResults](docs/AccessKeyResults.md)
178
+ - [AlignmentFile](docs/AlignmentFile.md)
179
+ - [AlignmentFileResults](docs/AlignmentFileResults.md)
180
+ - [AnalysisSet](docs/AnalysisSet.md)
181
+ - [AnalysisSetResults](docs/AnalysisSetResults.md)
182
+ - [AnalysisStep](docs/AnalysisStep.md)
183
+ - [AnalysisStepResults](docs/AnalysisStepResults.md)
184
+ - [AnalysisStepVersion](docs/AnalysisStepVersion.md)
185
+ - [AnalysisStepVersionResults](docs/AnalysisStepVersionResults.md)
186
+ - [AssayTerm](docs/AssayTerm.md)
187
+ - [AssayTermResults](docs/AssayTermResults.md)
188
+ - [Attachment](docs/Attachment.md)
189
+ - [Attachment1](docs/Attachment1.md)
190
+ - [AuxiliarySet](docs/AuxiliarySet.md)
191
+ - [AuxiliarySetResults](docs/AuxiliarySetResults.md)
192
+ - [Award](docs/Award.md)
193
+ - [AwardResults](docs/AwardResults.md)
194
+ - [Biomarker](docs/Biomarker.md)
195
+ - [BiomarkerResults](docs/BiomarkerResults.md)
196
+ - [ConfigurationFile](docs/ConfigurationFile.md)
197
+ - [ConfigurationFileResults](docs/ConfigurationFileResults.md)
198
+ - [ConstructLibrarySet](docs/ConstructLibrarySet.md)
199
+ - [ConstructLibrarySetResults](docs/ConstructLibrarySetResults.md)
200
+ - [CrisprModification](docs/CrisprModification.md)
201
+ - [CrisprModificationResults](docs/CrisprModificationResults.md)
202
+ - [CuratedSet](docs/CuratedSet.md)
203
+ - [CuratedSetResults](docs/CuratedSetResults.md)
204
+ - [DegronModification](docs/DegronModification.md)
205
+ - [DegronModificationResults](docs/DegronModificationResults.md)
206
+ - [Document](docs/Document.md)
207
+ - [DocumentResults](docs/DocumentResults.md)
208
+ - [Gene](docs/Gene.md)
209
+ - [GeneLocation](docs/GeneLocation.md)
210
+ - [GeneLocation1](docs/GeneLocation1.md)
211
+ - [GeneResults](docs/GeneResults.md)
212
+ - [GenomeBrowserAnnotationFile](docs/GenomeBrowserAnnotationFile.md)
213
+ - [GenomeBrowserAnnotationFileResults](docs/GenomeBrowserAnnotationFileResults.md)
214
+ - [HumanDonor](docs/HumanDonor.md)
215
+ - [HumanDonorResults](docs/HumanDonorResults.md)
216
+ - [Image](docs/Image.md)
217
+ - [ImageFile](docs/ImageFile.md)
218
+ - [ImageFileResults](docs/ImageFileResults.md)
219
+ - [ImageResults](docs/ImageResults.md)
220
+ - [InVitroSystem](docs/InVitroSystem.md)
221
+ - [InVitroSystemResults](docs/InVitroSystemResults.md)
222
+ - [InstitutionalCertificate](docs/InstitutionalCertificate.md)
223
+ - [InstitutionalCertificateResults](docs/InstitutionalCertificateResults.md)
224
+ - [Item](docs/Item.md)
225
+ - [ItemType](docs/ItemType.md)
226
+ - [Lab](docs/Lab.md)
227
+ - [LabResults](docs/LabResults.md)
228
+ - [Limit](docs/Limit.md)
229
+ - [Locus](docs/Locus.md)
230
+ - [Locus1](docs/Locus1.md)
231
+ - [MatrixFile](docs/MatrixFile.md)
232
+ - [MatrixFileResults](docs/MatrixFileResults.md)
233
+ - [MeasurementSet](docs/MeasurementSet.md)
234
+ - [MeasurementSetResults](docs/MeasurementSetResults.md)
235
+ - [ModelFile](docs/ModelFile.md)
236
+ - [ModelFileResults](docs/ModelFileResults.md)
237
+ - [ModelSet](docs/ModelSet.md)
238
+ - [ModelSetResults](docs/ModelSetResults.md)
239
+ - [MultiplexedSample](docs/MultiplexedSample.md)
240
+ - [MultiplexedSampleResults](docs/MultiplexedSampleResults.md)
241
+ - [NoResultsResponse](docs/NoResultsResponse.md)
242
+ - [NoResultsResponseColumnsValue](docs/NoResultsResponseColumnsValue.md)
243
+ - [NoResultsResponseFacetGroupsInner](docs/NoResultsResponseFacetGroupsInner.md)
244
+ - [NoResultsResponseFacetsInner](docs/NoResultsResponseFacetsInner.md)
245
+ - [NoResultsResponseFacetsInnerTermsInner](docs/NoResultsResponseFacetsInnerTermsInner.md)
246
+ - [NoResultsResponseFiltersInner](docs/NoResultsResponseFiltersInner.md)
247
+ - [NoResultsResponseSortValue](docs/NoResultsResponseSortValue.md)
248
+ - [OpenReadingFrame](docs/OpenReadingFrame.md)
249
+ - [OpenReadingFrameResults](docs/OpenReadingFrameResults.md)
250
+ - [Page](docs/Page.md)
251
+ - [PageLayout](docs/PageLayout.md)
252
+ - [PageLayoutComponents](docs/PageLayoutComponents.md)
253
+ - [PageResults](docs/PageResults.md)
254
+ - [PhenotypeTerm](docs/PhenotypeTerm.md)
255
+ - [PhenotypeTermResults](docs/PhenotypeTermResults.md)
256
+ - [PhenotypicFeature](docs/PhenotypicFeature.md)
257
+ - [PhenotypicFeatureResults](docs/PhenotypicFeatureResults.md)
258
+ - [PlatformTerm](docs/PlatformTerm.md)
259
+ - [PlatformTermResults](docs/PlatformTermResults.md)
260
+ - [PredictionSet](docs/PredictionSet.md)
261
+ - [PredictionSetResults](docs/PredictionSetResults.md)
262
+ - [PrimaryCell](docs/PrimaryCell.md)
263
+ - [PrimaryCellResults](docs/PrimaryCellResults.md)
264
+ - [Publication](docs/Publication.md)
265
+ - [PublicationResults](docs/PublicationResults.md)
266
+ - [ReferenceFile](docs/ReferenceFile.md)
267
+ - [ReferenceFileResults](docs/ReferenceFileResults.md)
268
+ - [RelatedDonor](docs/RelatedDonor.md)
269
+ - [RodentDonor](docs/RodentDonor.md)
270
+ - [RodentDonorResults](docs/RodentDonorResults.md)
271
+ - [SampleTerm](docs/SampleTerm.md)
272
+ - [SampleTermResults](docs/SampleTermResults.md)
273
+ - [SearchFacet](docs/SearchFacet.md)
274
+ - [SearchResultItem](docs/SearchResultItem.md)
275
+ - [SearchResults](docs/SearchResults.md)
276
+ - [SequenceFile](docs/SequenceFile.md)
277
+ - [SequenceFileResults](docs/SequenceFileResults.md)
278
+ - [SignalFile](docs/SignalFile.md)
279
+ - [SignalFileResults](docs/SignalFileResults.md)
280
+ - [Software](docs/Software.md)
281
+ - [SoftwareResults](docs/SoftwareResults.md)
282
+ - [SoftwareVersion](docs/SoftwareVersion.md)
283
+ - [SoftwareVersionResults](docs/SoftwareVersionResults.md)
284
+ - [Source](docs/Source.md)
285
+ - [SourceResults](docs/SourceResults.md)
286
+ - [TabularFile](docs/TabularFile.md)
287
+ - [TabularFileResults](docs/TabularFileResults.md)
288
+ - [TechnicalSample](docs/TechnicalSample.md)
289
+ - [TechnicalSampleResults](docs/TechnicalSampleResults.md)
290
+ - [Tile](docs/Tile.md)
291
+ - [Tissue](docs/Tissue.md)
292
+ - [TissueResults](docs/TissueResults.md)
293
+ - [Treatment](docs/Treatment.md)
294
+ - [TreatmentResults](docs/TreatmentResults.md)
295
+ - [User](docs/User.md)
296
+ - [UserResults](docs/UserResults.md)
297
+ - [WholeOrganism](docs/WholeOrganism.md)
298
+ - [WholeOrganismResults](docs/WholeOrganismResults.md)
299
+ - [Workflow](docs/Workflow.md)
300
+ - [WorkflowResults](docs/WorkflowResults.md)
301
+
302
+
303
+ <a id="documentation-for-authorization"></a>
304
+ ## Documentation For Authorization
305
+
306
+
307
+ Authentication schemes defined for the API:
308
+ <a id="basicAuth"></a>
309
+ ### basicAuth
310
+
311
+ - **Type**: HTTP basic authentication
312
+
313
+
314
+ ## Author
315
+
316
+
@@ -0,0 +1,158 @@
1
+ # coding: utf-8
2
+
3
+ # flake8: noqa
4
+
5
+ """
6
+ IGVF Project API
7
+
8
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
9
+
10
+ The version of the OpenAPI document: 46.1.0
11
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
12
+
13
+ Do not edit the class manually.
14
+ """ # noqa: E501
15
+
16
+
17
+ __version__ = "46.1.0"
18
+
19
+ # import apis into sdk package
20
+ from async_igvf_client.api.async_igvf_api import AsyncIgvfApi
21
+
22
+ # import ApiClient
23
+ from async_igvf_client.api_response import ApiResponse
24
+ from async_igvf_client.api_client import ApiClient
25
+ from async_igvf_client.configuration import Configuration
26
+ from async_igvf_client.exceptions import OpenApiException
27
+ from async_igvf_client.exceptions import ApiTypeError
28
+ from async_igvf_client.exceptions import ApiValueError
29
+ from async_igvf_client.exceptions import ApiKeyError
30
+ from async_igvf_client.exceptions import ApiAttributeError
31
+ from async_igvf_client.exceptions import ApiException
32
+
33
+ # import models into sdk package
34
+ from async_igvf_client.models.access_key import AccessKey
35
+ from async_igvf_client.models.access_key_results import AccessKeyResults
36
+ from async_igvf_client.models.alignment_file import AlignmentFile
37
+ from async_igvf_client.models.alignment_file_results import AlignmentFileResults
38
+ from async_igvf_client.models.analysis_set import AnalysisSet
39
+ from async_igvf_client.models.analysis_set_results import AnalysisSetResults
40
+ from async_igvf_client.models.analysis_step import AnalysisStep
41
+ from async_igvf_client.models.analysis_step_results import AnalysisStepResults
42
+ from async_igvf_client.models.analysis_step_version import AnalysisStepVersion
43
+ from async_igvf_client.models.analysis_step_version_results import AnalysisStepVersionResults
44
+ from async_igvf_client.models.assay_term import AssayTerm
45
+ from async_igvf_client.models.assay_term_results import AssayTermResults
46
+ from async_igvf_client.models.attachment import Attachment
47
+ from async_igvf_client.models.attachment1 import Attachment1
48
+ from async_igvf_client.models.auxiliary_set import AuxiliarySet
49
+ from async_igvf_client.models.auxiliary_set_results import AuxiliarySetResults
50
+ from async_igvf_client.models.award import Award
51
+ from async_igvf_client.models.award_results import AwardResults
52
+ from async_igvf_client.models.biomarker import Biomarker
53
+ from async_igvf_client.models.biomarker_results import BiomarkerResults
54
+ from async_igvf_client.models.configuration_file import ConfigurationFile
55
+ from async_igvf_client.models.configuration_file_results import ConfigurationFileResults
56
+ from async_igvf_client.models.construct_library_set import ConstructLibrarySet
57
+ from async_igvf_client.models.construct_library_set_results import ConstructLibrarySetResults
58
+ from async_igvf_client.models.crispr_modification import CrisprModification
59
+ from async_igvf_client.models.crispr_modification_results import CrisprModificationResults
60
+ from async_igvf_client.models.curated_set import CuratedSet
61
+ from async_igvf_client.models.curated_set_results import CuratedSetResults
62
+ from async_igvf_client.models.degron_modification import DegronModification
63
+ from async_igvf_client.models.degron_modification_results import DegronModificationResults
64
+ from async_igvf_client.models.document import Document
65
+ from async_igvf_client.models.document_results import DocumentResults
66
+ from async_igvf_client.models.gene import Gene
67
+ from async_igvf_client.models.gene_location import GeneLocation
68
+ from async_igvf_client.models.gene_location1 import GeneLocation1
69
+ from async_igvf_client.models.gene_results import GeneResults
70
+ from async_igvf_client.models.genome_browser_annotation_file import GenomeBrowserAnnotationFile
71
+ from async_igvf_client.models.genome_browser_annotation_file_results import GenomeBrowserAnnotationFileResults
72
+ from async_igvf_client.models.human_donor import HumanDonor
73
+ from async_igvf_client.models.human_donor_results import HumanDonorResults
74
+ from async_igvf_client.models.image import Image
75
+ from async_igvf_client.models.image_file import ImageFile
76
+ from async_igvf_client.models.image_file_results import ImageFileResults
77
+ from async_igvf_client.models.image_results import ImageResults
78
+ from async_igvf_client.models.in_vitro_system import InVitroSystem
79
+ from async_igvf_client.models.in_vitro_system_results import InVitroSystemResults
80
+ from async_igvf_client.models.institutional_certificate import InstitutionalCertificate
81
+ from async_igvf_client.models.institutional_certificate_results import InstitutionalCertificateResults
82
+ from async_igvf_client.models.item import Item
83
+ from async_igvf_client.models.item_type import ItemType
84
+ from async_igvf_client.models.lab import Lab
85
+ from async_igvf_client.models.lab_results import LabResults
86
+ from async_igvf_client.models.limit import Limit
87
+ from async_igvf_client.models.locus import Locus
88
+ from async_igvf_client.models.locus1 import Locus1
89
+ from async_igvf_client.models.matrix_file import MatrixFile
90
+ from async_igvf_client.models.matrix_file_results import MatrixFileResults
91
+ from async_igvf_client.models.measurement_set import MeasurementSet
92
+ from async_igvf_client.models.measurement_set_results import MeasurementSetResults
93
+ from async_igvf_client.models.model_file import ModelFile
94
+ from async_igvf_client.models.model_file_results import ModelFileResults
95
+ from async_igvf_client.models.model_set import ModelSet
96
+ from async_igvf_client.models.model_set_results import ModelSetResults
97
+ from async_igvf_client.models.multiplexed_sample import MultiplexedSample
98
+ from async_igvf_client.models.multiplexed_sample_results import MultiplexedSampleResults
99
+ from async_igvf_client.models.no_results_response import NoResultsResponse
100
+ from async_igvf_client.models.no_results_response_columns_value import NoResultsResponseColumnsValue
101
+ from async_igvf_client.models.no_results_response_facet_groups_inner import NoResultsResponseFacetGroupsInner
102
+ from async_igvf_client.models.no_results_response_facets_inner import NoResultsResponseFacetsInner
103
+ from async_igvf_client.models.no_results_response_facets_inner_terms_inner import NoResultsResponseFacetsInnerTermsInner
104
+ from async_igvf_client.models.no_results_response_filters_inner import NoResultsResponseFiltersInner
105
+ from async_igvf_client.models.no_results_response_sort_value import NoResultsResponseSortValue
106
+ from async_igvf_client.models.open_reading_frame import OpenReadingFrame
107
+ from async_igvf_client.models.open_reading_frame_results import OpenReadingFrameResults
108
+ from async_igvf_client.models.page import Page
109
+ from async_igvf_client.models.page_layout import PageLayout
110
+ from async_igvf_client.models.page_layout_components import PageLayoutComponents
111
+ from async_igvf_client.models.page_results import PageResults
112
+ from async_igvf_client.models.phenotype_term import PhenotypeTerm
113
+ from async_igvf_client.models.phenotype_term_results import PhenotypeTermResults
114
+ from async_igvf_client.models.phenotypic_feature import PhenotypicFeature
115
+ from async_igvf_client.models.phenotypic_feature_results import PhenotypicFeatureResults
116
+ from async_igvf_client.models.platform_term import PlatformTerm
117
+ from async_igvf_client.models.platform_term_results import PlatformTermResults
118
+ from async_igvf_client.models.prediction_set import PredictionSet
119
+ from async_igvf_client.models.prediction_set_results import PredictionSetResults
120
+ from async_igvf_client.models.primary_cell import PrimaryCell
121
+ from async_igvf_client.models.primary_cell_results import PrimaryCellResults
122
+ from async_igvf_client.models.publication import Publication
123
+ from async_igvf_client.models.publication_results import PublicationResults
124
+ from async_igvf_client.models.reference_file import ReferenceFile
125
+ from async_igvf_client.models.reference_file_results import ReferenceFileResults
126
+ from async_igvf_client.models.related_donor import RelatedDonor
127
+ from async_igvf_client.models.rodent_donor import RodentDonor
128
+ from async_igvf_client.models.rodent_donor_results import RodentDonorResults
129
+ from async_igvf_client.models.sample_term import SampleTerm
130
+ from async_igvf_client.models.sample_term_results import SampleTermResults
131
+ from async_igvf_client.models.search_facet import SearchFacet
132
+ from async_igvf_client.models.search_result_item import SearchResultItem
133
+ from async_igvf_client.models.search_results import SearchResults
134
+ from async_igvf_client.models.sequence_file import SequenceFile
135
+ from async_igvf_client.models.sequence_file_results import SequenceFileResults
136
+ from async_igvf_client.models.signal_file import SignalFile
137
+ from async_igvf_client.models.signal_file_results import SignalFileResults
138
+ from async_igvf_client.models.software import Software
139
+ from async_igvf_client.models.software_results import SoftwareResults
140
+ from async_igvf_client.models.software_version import SoftwareVersion
141
+ from async_igvf_client.models.software_version_results import SoftwareVersionResults
142
+ from async_igvf_client.models.source import Source
143
+ from async_igvf_client.models.source_results import SourceResults
144
+ from async_igvf_client.models.tabular_file import TabularFile
145
+ from async_igvf_client.models.tabular_file_results import TabularFileResults
146
+ from async_igvf_client.models.technical_sample import TechnicalSample
147
+ from async_igvf_client.models.technical_sample_results import TechnicalSampleResults
148
+ from async_igvf_client.models.tile import Tile
149
+ from async_igvf_client.models.tissue import Tissue
150
+ from async_igvf_client.models.tissue_results import TissueResults
151
+ from async_igvf_client.models.treatment import Treatment
152
+ from async_igvf_client.models.treatment_results import TreatmentResults
153
+ from async_igvf_client.models.user import User
154
+ from async_igvf_client.models.user_results import UserResults
155
+ from async_igvf_client.models.whole_organism import WholeOrganism
156
+ from async_igvf_client.models.whole_organism_results import WholeOrganismResults
157
+ from async_igvf_client.models.workflow import Workflow
158
+ from async_igvf_client.models.workflow_results import WorkflowResults
@@ -0,0 +1,5 @@
1
+ # flake8: noqa
2
+
3
+ # import apis into api package
4
+ from async_igvf_client.api.async_igvf_api import AsyncIgvfApi
5
+