Skip to content

Latest commit

 

History

History
93 lines (84 loc) · 7.22 KB

File metadata and controls

93 lines (84 loc) · 7.22 KB

ReferenceFile

A file containing diverse reference related information.

Properties

Name Type Description Notes
externally_hosted bool Indicates whether the file is externally hosted and not stored on portal. [optional]
external_host_url str A link to the resource where the file is externally hosted. [optional]
anvil_url str URL linking to the controlled access file that has been deposited at AnVIL workspace. [optional]
catalog_collections List[str] The collections in the IGVF catalog that contain the data in this file. [optional]
catalog_class str The class curated in the IGVF catalog that the data in this file belongs to. [optional]
catalog_notes str DACC notes for data loading in the IGVF catalog [optional]
preview_timestamp str The date the object was previewed. [optional]
source_url str Link to external resource, such as NCBI or GENCODE, where the reference data was obtained. [optional]
controlled_access bool Boolean value, indicating the file being controlled access, if true. [optional]
assembly str Genome assembly applicable for the reference data. [optional]
release_timestamp str The date the object was released. [optional]
file_format_type str The subtype of bed files. [optional]
transcriptome_annotation str The annotation and version of the reference resource. [optional]
documents List[str] Documents that provide additional information (not data file). [optional]
lab str Lab associated with the submission. [optional]
award str Grant associated with the submission. [optional]
accession str A unique identifier to be used to reference the object prefixed with IGVF. [optional]
alternate_accessions List[str] Accessions previously assigned to objects that have been merged with this object. [optional]
collections List[str] Some samples are part of particular data collections. [optional]
status str The status of the metadata object. [optional]
revoke_detail str Explanation of why an object was transitioned to the revoked status. [optional]
schema_version str The version of the JSON schema that the server uses to validate the object. [optional]
uuid str The unique identifier associated with every object. [optional]
notes str DACC internal notes. [optional]
aliases List[str] Lab specific identifiers to reference an object. [optional]
creation_timestamp str The date the object was created. [optional]
submitted_by str The user who submitted the object. [optional]
submitter_comment str Additional information specified by the submitter to be displayed as a comment on the portal. [optional]
description str A plain text description of the object. [optional]
analysis_step_version str The analysis step version of the file. [optional]
content_md5sum str The MD5sum of the uncompressed file. [optional]
content_type str The type of content in the file. [optional]
dbxrefs List[str] Identifiers from external resources that may have 1-to-1 or 1-to-many relationships with IGVF file objects. [optional]
derived_from List[str] The files participating as inputs into software to produce this output file. [optional]
derived_manually bool A boolean indicating whether the file has been dervided manually without automated computational methods. [optional]
file_format str The file format or extension of the file. [optional]
file_format_specifications List[str] Documents that describe the file format and fields of this file. [optional]
file_set str The file set that this file belongs to. [optional]
file_size int File size specified in bytes. [optional]
md5sum str The md5sum of the file being transferred. [optional]
submitted_file_name str Original name of the file. [optional]
upload_status str The upload/validation status of the file. [optional]
validation_error_detail str Explanation of why the file failed the automated content checks. [optional]
checkfiles_version str The Checkfiles GitHub version release the file was validated with. [optional]
checkfiles_timestamp str The date and time the file object was last checked by the Checkfiles script. [optional]
supersedes List[str] The file(s) that this file supersedes by virtue of being newer, better, or a fixed version of etc. than the one(s) it supersedes. [optional]
catalog_adapters List[str] IGVF Catalog Adapters that ingests this file [optional]
catalog_method str The method curated in the IGVF catalog that the non-IGVF data in this file processed with [optional]
sources List[str] The originating lab(s) or vendor(s). [optional]
id str [optional]
type List[str] [optional]
summary str A summary of the reference file. [optional]
integrated_in List[str] Construct library set(s) that this file was used for in insert design. [optional]
input_file_for List[str] The files which are derived from this file. [optional]
gene_list_for List[str] File Set(s) that this file is a gene list for. [optional]
loci_list_for List[str] File Set(s) that this file is a loci list for. [optional]
quality_metrics List[str] The quality metrics that are associated with this file. [optional]
superseded_by List[str] File(s) this file is superseded by virtue of those file(s) being newer, better, or a fixed version of etc. than this one. [optional]
assay_titles List[str] Title(s) of assay from the file set this file belongs to. [optional]
preferred_assay_titles List[str] Preferred assay titles from the file set this file belongs to. [optional]
workflows List[str] The workflows associated with the analysis step version used to produce this file. [optional]
href str The download path to obtain file. [optional]
s3_uri str The S3 URI of public file object. [optional]
upload_credentials object The upload credentials for S3 to submit the file content. [optional]

Example

from igvf_client.models.reference_file import ReferenceFile

# TODO update the JSON string below
json = "{}"
# create an instance of ReferenceFile from a JSON string
reference_file_instance = ReferenceFile.from_json(json)
# print the JSON string representation of the object
print(ReferenceFile.to_json())

# convert the object into a dict
reference_file_dict = reference_file_instance.to_dict()
# create an instance of ReferenceFile from a dict
reference_file_from_dict = ReferenceFile.from_dict(reference_file_dict)

[Back to Model list] [Back to API list] [Back to README]