Skip to content

Commit

Permalink
Merge pull request #6 from TripalCultivate/g2.2-germAccessionImporter
Browse files Browse the repository at this point in the history
Germplasm Accession Importer
  • Loading branch information
laceysanderson authored Feb 9, 2024
2 parents 4666d2b + 09f6fe7 commit 4f5e0e0
Show file tree
Hide file tree
Showing 13 changed files with 2,263 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
supervisord*
.phpunit.result.cache
.DS_Store
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
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'
Loading

0 comments on commit 4f5e0e0

Please sign in to comment.