Closed dlebauer closed 7 years ago
@dlebauer - please touch base with Scott about this.
remaining issues:
relationships are first two columns of https://docs.google.com/spreadsheets/d/1iHmSyFeCO7np_lxYyvdiXQQcAwBJpIKpeAOyMXFd-OY/edit#gid=901711246
name like 'UA MAC Season 1 Plot [col B]%
where name like 'MAC Season 2%'
@dlebauer To be clear, should all of the season 1 experiments should have the same start and end dates? Looking at all of the managements in https://terraref.ncsa.illinois.edu/bety/managements, the latest harvest date is 2016-07-14. There are planting dates 2016-04-19, 2016-04-20, and 2016-08-03. I assume the latter is for season 2. There are no planting dates in May. So should the duration be "2016-04-19 to 2016-07-14" for all season 1 experiments?
Yes. duration is "2016-04-19 to 2016-07-14" for all season 1 experiments
On Fri, Jan 13, 2017 at 11:48 AM Scott Rohde notifications@github.com wrote:
@dlebauer https://github.com/dlebauer To be clear, should all of the season 1 experiments should have the same start and end dates? Looking at all of the managements in https://terraref.ncsa.illinois.edu/bety/managements, the latest harvest date is 2016-07-14. There are planting dates 2016-04-19, 2016-04-20, and 2016-08-03. I assume the latter is for season 2. There are no planting dates in May. So should the duration be "2016-04-19 to 2016-07-14" for all season 1 experiments?
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/terraref/computing-pipeline/issues/97#issuecomment-272501300, or mute the thread https://github.com/notifications/unsubscribe-auth/AAcX5xyxQmKu4VFquoEbfIeLG8pE92KBks5rR7jvgaJpZM4IXn6E .
@dlebauer I did season 1. I used insert statements of the form
INSERT INTO experiments_sites (experiment_id, site_id) SELECT e.id, s.id FROM experiments e, sites s WHERE e.name = 'BAP' AND sitename ~ '^MAC Field Scanner Season 1 Field Plot 705( [WE])?$';
I have two questions about season 2:
Site names for season 2 come in two forms: they either match the regular expression
'^MAC Field Scanner Season 2 Range \d+ Pass \d+$'
or match
'^MAC Field Scanner Field Plot \d+ Season 2$'
Should I associate the "Season 2 Stay-green RILs F10" experiment with any site that contains the string 'Season 2'?
Secondly, there is no management corresponding to the season 2 harvest, so I don't know what the precise end date should be.
Yes associate with all season 2 sites
End date is Dec 2 2016 On Fri, Jan 13, 2017 at 4:05 PM Scott Rohde notifications@github.com wrote:
@dlebauer https://github.com/dlebauer I did season 1. I used insert statements of the form
INSERT INTO experiments_sites (experiment_id, site_id) SELECT e.id, s.id FROM experiments e, sites s WHERE e.name = 'BAP' AND sitename ~ '^MAC Field Scanner Season 1 Field Plot 705( [WE])?$';
I have two questions about season 2:
Site names for season 2 come in two forms: they either match the regular expression
'^MAC Field Scanner Season 2 Range \d+ Pass \d+$'
or match
'^MAC Field Scanner Field Plot \d+ Season 2$'
Should I associate the "Season 2 Stay-green RILs F10" experiment with any site that contains the string 'Season 2'?
Secondly, there is no management corresponding to the season 2 harvest, so I don't know what the precise end date should be.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/terraref/computing-pipeline/issues/97#issuecomment-272560637, or mute the thread https://github.com/notifications/unsubscribe-auth/AAcX5yI5J7_xOO0Gi1ahFwtQf8MpJrEvks5rR_UcgaJpZM4IXn6E .
@dlebauer OK, season 2 is now done. But it occurred to me that maybe id numbers for the experiments and experiments_sites are supposed to be in the 6 billion range. If so, I'm not sure what mechanism @robkooper uses to make sure each machine starts autonumbering at the correct place.
@dlebauer I re-did the experiments
and experiments_sites
inserts with the correct id range restriction in effect. Did a hotfix release to set the starting id numbers correctly.
@dlebauer Can this be closed?
Detailed Description
The Experimental design for Sorghum trials is defined in this google spreadsheet
Next steps