ybukhman / GCAT

Growth curve analysis tool
2 stars 3 forks source link

Add AUC start and AUC end fields to the web interface. #19

Closed ybukhman closed 9 years ago

ybukhman commented 9 years ago

They correspond to auc.start and auc.end parameters of gcat.analysis.main().

ybukhman commented 9 years ago

Put the AUC stuff at the end of the form for now.

Section title: “Area Under the Curve (AUC)” Tool tip: “Enter start and end time points for AUC computation, in hours. If no values are entered, GCAT will compute the AUC for the entire time course.” Create 2 fields where a user can enter a number: “AUC start time” and “AUC end time”.

Upon submission of the form, Rails should do the following: • Verify that these fields are either empty or contain real positive numbers • Pass the values to gcat.analysis.main as arguments auc.start and auc.end

If the fields are left empty, do not pass them or pass NULL, whichever is easier.

ybukhman commented 9 years ago

Fixed in 36654e01