Skip to content

Commit

Permalink
add vector search to quicksearch; fix a multiple submission issue wit…
Browse files Browse the repository at this point in the history
…h the multiple trial upload; quote params in multiple trial upload script; improve multiple trial upload error reporting; improve dataset and list display speed.
  • Loading branch information
lukasmueller committed Sep 10, 2024
1 parent eee3541 commit 4562c9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cxgn/sgn
Submodule sgn updated 68 files
+70 −4 bin/delete_trials.pl
+154 −0 bin/update_stock_props.pl
+46 −19 bin/upload_multiple_trial_design.pl
+2 −1 js/build.webpack.config.js
+7 −6 js/package.json
+2 −1 js/source/entries/wizard.js
+9 −5 js/source/legacy/CXGN/BreedersToolbox/Accessions.js
+10 −40 js/source/legacy/CXGN/BreedersToolbox/UploadTrial.js
+41 −24 js/source/legacy/solGS/Dataset.js
+17 −0 js/source/legacy/solGS/List.js
+17 −39 js/source/legacy/solGS/cluster.js
+6 −6 js/source/legacy/solGS/combineTrials.js
+6 −3 js/source/legacy/solGS/correlation.js
+41 −20 js/source/legacy/solGS/genotypingProtocol.js
+5 −3 js/source/legacy/solGS/kinship.js
+35 −15 js/source/legacy/solGS/listTypeSelectionPopulation.js
+29 −13 js/source/legacy/solGS/listTypeTrainingPopulation.js
+20 −54 js/source/legacy/solGS/pca.js
+9 −1 js/source/legacy/solGS/searchTrials.js
+1 −1 js/source/legacy/solGS/selectionPopulations.js
+8 −8 js/source/legacy/solGS/solGS.js
+1 −1 lib/CXGN/Phenotypes/Search/Native.pm
+11 −9 lib/CXGN/Stock/Search.pm
+92 −0 lib/CXGN/Stock/Seedlot.pm
+239 −0 lib/CXGN/Stock/Seedlot/ParseUpload/Plugin/SeedlotFromAccessionGeneric.pm
+199 −0 lib/CXGN/Stock/Seedlot/ParseUpload/Plugin/SeedlotFromCrossGeneric.pm
+4 −0 lib/CXGN/Stock/Seedlot/ParseUpload/Plugin/SeedlotHarvestedXLS.pm
+4 −0 lib/CXGN/Stock/Seedlot/ParseUpload/Plugin/SeedlotXLS.pm
+1 −1 lib/SGN/Controller/AJAX/MixedModels.pm
+2 −2 lib/SGN/Controller/AJAX/Seedlot.pm
+4 −4 lib/SGN/Controller/AJAX/Stock.pm
+6 −5 lib/SGN/Controller/AJAX/Trial.pm
+22 −4 lib/SGN/Controller/QuickSearch.pm
+40 −31 mason/breeders_toolbox/delete_seedlots.mas
+7 −7 mason/breeders_toolbox/genotyping_data_project/create_genotyping_project_dialog.mas
+13 −0 mason/breeders_toolbox/seedlots.mas
+4 −4 mason/breeders_toolbox/trial/trial_upload_dialogs.mas
+27 −25 mason/breeders_toolbox/upload_seedlots_dialogs.mas
+58 −0 mason/phenome/display_owners.mas
+1 −0 mason/search/quick_search.mas
+13 −7 mason/solgs/genotyping_protocol/index.mas
+1 −1 mason/solgs/search/list_type_training_population.mas
+1 −1 mason/solgs/search/selection_populations.mas
+2 −2 mason/solgs/search/trial_search_form.mas
+2 −2 mason/solgs/search/trials_search_result.mas
+7 −5 mason/solgs/tools/cluster/analysis.mas
+2 −4 mason/solgs/tools/correlation/analysis.mas
+14 −7 mason/solgs/tools/datatable_display.mas
+3 −2 mason/solgs/tools/genetic_gain/genetic_gain.mas
+8 −7 mason/solgs/tools/kinship/analysis.mas
+3 −2 mason/solgs/tools/pca/analysis.mas
+0 −60 mason/solgs/tools/pca/index.mas
+1 −1 mason/solgs/tools/selection_index/selection_index.mas
+ t/data/stock/seedlot_upload_named_accessions
+ t/data/stock/seedlot_upload_named_accessions.xls
+ t/data/stock/seedlot_upload_named_accessions.xlsx
+ t/data/stock/seedlot_upload_named_accessions_error.xlsx
+2 −2 t/selenium2/solgs/cluster.t
+5 −5 t/selenium2/solgs/combine_trials.t
+26 −23 t/selenium2/solgs/correlation.t
+2 −2 t/selenium2/solgs/genetic_gain.t
+2 −2 t/selenium2/solgs/hcluster.t
+10 −10 t/selenium2/solgs/kcluster.t
+2 −2 t/selenium2/solgs/kinship.t
+2 −2 t/selenium2/solgs/pca.t
+2 −2 t/selenium2/solgs/selection_index.t
+5 −5 t/selenium2/solgs/solgs.t
+21 −4 t/unit_mech/AJAX/Stocks/UploadSeedlots.t

0 comments on commit 4562c9a

Please sign in to comment.