-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #197 from cidgoh/development
Merging new changes to master from development branch
- Loading branch information
Showing
49 changed files
with
1,650 additions
and
333 deletions.
There are no files selected for viewing
This file contains 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 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 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,97 @@ | ||
{ | ||
"Format": { | ||
"sep": "tab", | ||
"suffix": ".gz" | ||
}, | ||
"Required": { | ||
"isolate": true, | ||
"lineage": true, | ||
"sample_collection_date": true, | ||
"country": true, | ||
"state_province_territory": true | ||
}, | ||
"Optional": { | ||
"gene_name": false, | ||
"organism": true, | ||
"host_scientific_name": true, | ||
"host_gender": false, | ||
"host_age_bin": false, | ||
"submission_date": false, | ||
"gisaid_accession": true, | ||
"length": false, | ||
"purpose_of_sampling": false, | ||
"purpose_of_sequencing": false, | ||
"alias": true, | ||
"Type": false, | ||
"Subtype": false, | ||
"SubLineageGroup": false, | ||
"Clade": false, | ||
"last_updated": true | ||
}, | ||
"ViralAi_EpiCoV": { | ||
"isolate": "isolate", | ||
"lineage": "raw_lineage", | ||
"organism": "organism", | ||
"gisaid_accession": "gisaid_accession", | ||
"host_scientific_name": "host_scientific_name", | ||
"sample_collection_date": "sample_collection_date", | ||
"country": "geo_loc_name_country", | ||
"state_province_territory": "geo_loc_name_state_province_territory", | ||
"alias": "lineage", | ||
"purpose_of_sampling": "purpose_of_sampling_details", | ||
"purpose_of_sequencing": "purpose_of_sequencing_details", | ||
"last_updated": "last_updated" | ||
}, | ||
"Gisaid_EpiCoV": { | ||
"isolate": "isolate", | ||
"lineage": "raw_lineage", | ||
"organism": "organism", | ||
"gisaid_accession": "gisaid_accession", | ||
"host_scientific_name": "host_scientific_name", | ||
"sample_collection_date": "sample_collection_date", | ||
"country": "geo_loc_name_country", | ||
"state_province_territory": "geo_loc_name_state_province_territory", | ||
"alias": "lineage", | ||
"purpose_of_sampling": "purpose_of_sampling_details", | ||
"purpose_of_sequencing": "purpose_of_sequencing_details" | ||
}, | ||
"Gisaid_EpiPox": { | ||
"isolate": "isolate", | ||
"lineage": "raw_lineage", | ||
"organism": "organism", | ||
"gisaid_accession": "gisaid_accession", | ||
"host_scientific_name": "host_scientific_name", | ||
"sample_collection_date": "sample_collection_date", | ||
"country": "geo_loc_name_country", | ||
"state_province_territory": "geo_loc_name_state_province_territory", | ||
"alias": "lineage", | ||
"purpose_of_sampling": "purpose_of_sampling_details", | ||
"purpose_of_sequencing": "purpose_of_sequencing_details" | ||
}, | ||
"NCBIVirus_EpiPox": { | ||
"isolate": "isolate", | ||
"lineage": "raw_lineage", | ||
"organism": "organism", | ||
"gisaid_accession": "gisaid_accession", | ||
"host_scientific_name": "host_scientific_name", | ||
"sample_collection_date": "sample_collection_date", | ||
"country": "geo_loc_name_country", | ||
"state_province_territory": "geo_loc_name_state_province_territory", | ||
"alias": "lineage", | ||
"purpose_of_sampling": "purpose_of_sampling_details", | ||
"purpose_of_sequencing": "purpose_of_sequencing_details" | ||
}, | ||
"Gisaid_EpiFlu": { | ||
"isolate": "isolate", | ||
"lineage": "raw_lineage", | ||
"organism": "organism", | ||
"gisaid_accession": "gisaid_accession", | ||
"host_scientific_name": "host_scientific_name", | ||
"sample_collection_date": "sample_collection_date", | ||
"country": "geo_loc_name_country", | ||
"state_province_territory": "geo_loc_name_state_province_territory", | ||
"alias": "lineage", | ||
"purpose_of_sampling": "purpose_of_sampling_details", | ||
"purpose_of_sequencing": "purpose_of_sequencing_details" | ||
} | ||
} |
This file contains 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,48 @@ | ||
# This file contains a high-level summary of metadata columns across different sources. | ||
# general format of csv file is to be tab-demilimited, NO spaces in column headers: underscore (_) is used as best practice. | ||
# gz compressed file | ||
|
||
# Required metadata columns | ||
Format: | ||
sep: "tab" # options tab | ||
suffix: ".gz" | ||
|
||
Required: | ||
isolate: True | ||
lineage: True | ||
sample_collection_date: True | ||
country: True | ||
state_province_territory: True | ||
|
||
# Option metadata columns | ||
Optional: | ||
gene_name: False | ||
organism: True | ||
host_scientific_name: True | ||
host_gender: False | ||
host_age_bin: False | ||
submission_date: False | ||
gisaid_accession: True | ||
length: False | ||
purpose_of_sampling: False | ||
purpose_of_sequencing: False | ||
alias: True | ||
Type: False | ||
Subtype: False | ||
SubLineageGroup: False | ||
Clade: False | ||
last_updated: True | ||
|
||
# Gisaid_EpiCoV metadata columns | ||
Gisaid_EpiFlu: | ||
isolate: "isolate" | ||
lineage: "raw_lineage" | ||
organism: "organism" | ||
gisaid_accession: "gisaid_accession" | ||
host_scientific_name: "host_scientific_name" | ||
sample_collection_date: "sample_collection_date" | ||
country: "geo_loc_name_country" | ||
state_province_territory: "geo_loc_name_state_province_territory" | ||
alias: "lineage" | ||
purpose_of_sampling: "purpose_of_sampling_details" | ||
purpose_of_sequencing: "purpose_of_sequencing_details" |
This file contains 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,76 @@ | ||
# This file contains a high-level summary of metadata columns across different sources. | ||
# general format of csv file is to be tab-demilimited, NO spaces in column headers: underscore (_) is used as best practice. | ||
# gz compressed file | ||
|
||
# Required metadata columns | ||
Format: | ||
sep: "tab" # options tab | ||
suffix: ".gz" | ||
|
||
Required: | ||
isolate: True | ||
lineage: True | ||
sample_collection_date: True | ||
country: True | ||
state_province_territory: True | ||
|
||
# Option metadata columns | ||
Optional: | ||
gene_name: False | ||
organism: True | ||
host_scientific_name: True | ||
host_gender: False | ||
host_age_bin: False | ||
submission_date: False | ||
gisaid_accession: False | ||
length: False | ||
purpose_of_sampling: False | ||
purpose_of_sequencing: False | ||
alias: False | ||
Type: False | ||
Subtype: False | ||
SubLineageGroup: False | ||
clade: True | ||
last_updated: False | ||
|
||
# Gisaid_mpox metadata columns | ||
Pathoplexus_mpox: | ||
isolate: "accessionversion" | ||
lineage: "lineage" | ||
organism: "ncbivirusname" | ||
host_scientific_name: "hostnamescientific" | ||
sample_collection_date: "samplecollectiondate" | ||
country: "geoloccountry" | ||
state_province_territory: "geoloccity" | ||
alias: "lineage" | ||
purpose_of_sampling: "purposeofsampling" | ||
purpose_of_sequencing: "purposeofsequencing" | ||
clade: "clade" | ||
|
||
# Gisaid_EpiPox metadata columns | ||
Gisaid_EpiPox: | ||
isolate: "isolate" | ||
lineage: "raw_lineage" | ||
organism: "organism" | ||
gisaid_accession: "gisaid_accession" | ||
host_scientific_name: "host_scientific_name" | ||
sample_collection_date: "sample_collection_date" | ||
country: "geo_loc_name_country" | ||
state_province_territory: "geo_loc_name_state_province_territory" | ||
alias: "lineage" | ||
purpose_of_sampling: "purpose_of_sampling_details" | ||
purpose_of_sequencing: "purpose_of_sequencing_details" | ||
|
||
# NCBIVirus_EpiPox metadata columns | ||
NCBIVirus_EpiPox: | ||
isolate: "isolate" | ||
lineage: "raw_lineage" | ||
organism: "organism" | ||
gisaid_accession: "gisaid_accession" | ||
host_scientific_name: "host_scientific_name" | ||
sample_collection_date: "sample_collection_date" | ||
country: "geo_loc_name_country" | ||
state_province_territory: "geo_loc_name_state_province_territory" | ||
alias: "lineage" | ||
purpose_of_sampling: "purpose_of_sampling_details" | ||
purpose_of_sequencing: "purpose_of_sequencing_details" |
Oops, something went wrong.