123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?php
- use StatonLab\TripalTestSuite\Database\Factory;
- Factory::define('chado.cv', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->unique()->word . uniqid(),
-
- 'definition' => $faker->text,
- ];
- });
- Factory::define('chado.db', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->unique()->word . uniqid(),
- 'description' => $faker->text,
- 'urlprefix' => $faker->url,
- 'url' => $faker->url,
- ];
- });
- Factory::define('chado.dbxref', function (Faker\Generator $faker) {
- return [
- 'db_id' => factory('chado.db')->create()->db_id,
- 'accession' => $faker->numberBetween(),
- 'version' => $faker->numberBetween(),
- 'description' => $faker->text,
- ];
- });
- Factory::define('chado.cvterm', function (Faker\Generator $faker) {
- return [
- 'cv_id' => factory('chado.cv')->create()->cv_id,
- 'dbxref_id' => factory('chado.dbxref')->create()->dbxref_id,
- 'name' => $faker->word,
- 'definition' => $faker->text,
- 'is_obsolete' => 0,
- 'is_relationshiptype' => 0,
- ];
- });
- Factory::define('chado.organism', function (Faker\Generator $faker) {
- $genus = $faker->word;
- $species = $faker->word;
- $abbr = substr($genus, 0) + ". " + $species;
- return [
- 'abbreviation' => $abbr,
- 'genus' => $genus,
- 'species' => $faker->name,
- 'common_name' => $faker->word,
- 'type_id' => factory('chado.cvterm')->create()->cvterm_id,
- ];
- });
- Factory::define('chado.feature', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->word,
- 'uniquename' => $faker->unique()->word,
- 'organism_id' => factory('chado.organism')->create()->organism_id,
- 'type_id' => factory('chado.cvterm')->create()->cvterm_id,
- ];
- });
- Factory::define('chado.analysis', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->word,
- 'description' => $faker->text,
- 'program' => $faker->unique()->word,
- 'programversion' => $faker->unique()->word,
- 'sourcename' => $faker->unique()->word,
- 'algorithm' => $faker->word,
- 'sourcename' => $faker->word,
- 'sourceversion' => $faker->word,
- 'sourceuri' => $faker->word,
-
- ];
- });
- Factory::define('chado.contact', function (Faker\Generator $faker) {
- return [
- 'type_id' => factory('chado.cvterm')->create()->cvterm_id,
- 'name' => $faker->name,
- 'description' => $faker->text,
- ];
- });
- Factory::define('chado.biomaterial', function (Faker\Generator $faker) {
- return [
- 'taxon_id' => factory('chado.organism')->create()->organism_id,
- 'biosourceprovider_id' => factory('chado.contact')->create()->contact_id,
- 'dbxref_id' => factory('chado.dbxref')->create()->dbxref_id,
- 'name' => $faker->unique()->word,
- 'description' => $faker->text,
- ];
- });
- Factory::define('chado.featuremap', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->unique()->word,
- 'description' => $faker->text,
- 'unittype_id' => factory('chado.cvterm')->create()->cvterm_id,
- ];
- });
- Factory::define('chado.featurepos', function (Faker\Generator $faker) {
- return [
- 'featuremap_id' => factory('chado.featuremap')->create()->featuremap_id,
- 'feature_id' => factory('chado.feature')->create()->feature_id,
- 'map_feature_id' => factory('chado.feature')->create()->feature_id,
- 'mappos' => $faker->randomFloat,
- ];
- });
- Factory::define('chado.featureloc', function (Faker\Generator $faker) {
-
- $a = $faker->randomNumber;
- $b = $faker->randomNumber;
- return [
- 'feature_id' => factory('chado.feature')->create()->feature_id,
- 'srcfeature_id' => factory('chado.feature')->create()->feature_id,
- 'fmin' => min([$a, $b]),
- 'is_fmin_partial' => 0,
- 'fmax' => max([$a, $b]),
- 'is_fmax_partial' => 0,
- 'strand' => NULL,
- 'phase' => NULL,
- 'residue_info' => $faker->word,
- 'locgroup' => 0,
- 'rank' => 0,
- ];
-
- });
- Factory::define('chado.library', function (Faker\Generator $faker) {
- return [
- 'organism_id' => factory('chado.organism')->create()->organism_id,
- 'name' => $faker->word,
- 'uniquename' => $faker->unique()->word,
- 'type_id' => factory('chado.cvterm')->create()->cvterm_id,
- 'is_obsolete' => 0,
- ];
- });
- Factory::define('chado.project', function (Faker\Generator $faker) {
- return [
- 'name' => $faker->word,
- 'description' => $faker->text,
- ];
- });
|