-
Notifications
You must be signed in to change notification settings - Fork 0
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 #6 from TripalCultivate/g2.2-germAccessionImporter
Germplasm Accession Importer
- Loading branch information
Showing
13 changed files
with
2,263 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
supervisord* | ||
.phpunit.result.cache | ||
.DS_Store |
14 changes: 14 additions & 0 deletions
14
trpcultivate_germplasm/config/install/trpcultivate_germplasm.settings.yml
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,14 @@ | ||
terms: | ||
accession: 0 | ||
genus: 0 | ||
species: 0 | ||
name: 0 | ||
institute_code: 0 | ||
institute_name: 0 | ||
pedigree: 0 | ||
country_of_origin_code: 0 | ||
synonym: 0 | ||
biological_status_of_accession_code: 0 | ||
breeding_method_DbId: 0 | ||
subtaxa: 0 | ||
stock_relationship_type_synonym: 0 |
47 changes: 47 additions & 0 deletions
47
trpcultivate_germplasm/config/schema/trpcultivate_germplasm.schema.yml
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,47 @@ | ||
trpcultivate_germplasm.settings: | ||
type: config_object | ||
label: 'Germplasm Package Configuration' | ||
mapping: | ||
terms: | ||
type: mapping | ||
label: 'Package default terms' | ||
mapping: | ||
accession: | ||
type: integer | ||
label: 'The cvterm ID of the accession for a germplasm' | ||
genus: | ||
type: integer | ||
label: 'The cvterm ID of the genus of a germplasm' | ||
species: | ||
type: integer | ||
label: 'The cvterm ID of the species of a germplasm' | ||
name: | ||
type: integer | ||
label: 'The cvterm ID of the name of a germplasm' | ||
institute_code: | ||
type: integer | ||
label: 'The cvterm ID of the institute code where the germplasm was bred' | ||
institute_name: | ||
type: integer | ||
label: 'The cvterm ID of the institute name where the germplasm was bred' | ||
pedigree: | ||
type: integer | ||
label: 'The cvterm ID of the pedigree information for a germplasm' | ||
country_of_origin_code: | ||
type: integer | ||
label: 'The cvterm ID of the country of origin of a germplasm' | ||
synonym: | ||
type: integer | ||
label: 'The cvterm ID of a synonym of a germplasm name' | ||
biological_status_of_accession_code: | ||
type: integer | ||
label: 'The cvterm ID of the biological status of a germplasm accession' | ||
breeding_method_DbId: | ||
type: integer | ||
label: 'The cvterm ID of the germplasm breeding method' | ||
subtaxa: | ||
type: integer | ||
label: 'The cvterm ID of the subtaxa of a germplasm' | ||
stock_relationship_type_synonym: | ||
type: integer | ||
label: 'The cvterm ID of the stock_relationship synonym' |
Oops, something went wrong.