Hello!
I am haiving a bit of trouble submitting my final submission csv. What I have been doing is downing is downloading the Test_set_Submission_form.csv and then replacing it with the guessed values of the model. However, when is do that I get an email shortly after the fact that says this:
Your submission (id: 9747567) is invalid, below are the invalid reasons:
Found 46 missing mixture(s): [('CGc01 ', 11, 27), ('CGc02 ', 12, 28), ('CGc03 ', 13, 29), ('CGc04 ', 14, 30), ('CGm01 ', 1, 17), ('CGm02 ', 2, 18), ('CGm03 ', 3, 19), ('CGm04 ', 4, 20), ('CGm05 ', 5, 21), ('CGm06 ', 6, 22), ('CGm07 ', 7, 23), ('CGm08 ', 8, 24), ('CGm09 ', 9, 25), ('CGm10 ', 10, 26), ('MRc23 ', 15, 31), ('MRc29 ', 16, 32), ('t01 ', 37, 67), ('t02 ', 34, 64), ('t03 ', 35, 65), ('t04 ', 33, 63), ('t05 ', 40, 70), ('t06 ', 49, 79), ('t07 ', 38, 68), ('t08 '...
I am a little confused because this error seems to be saying that I am missing all mixtures, but I beleive I have all of them there.
Any help would be greatly appreciated!
Created by Grant McConachie gdmac okay! thanks @gdmac,
I am pushing up a fix now and will re-run your submission ID 9747567. Stay tuned! @gdmac ,
Ah, okay. Looks like validation is "failing" because in the [submission template](syn57405848), there are trailing spaces in the `Dataset` values whereas in your prediction files, these spaces are removed, e.g.
```bash
$ head -n 4 Test_set_Submission_form.csv
Dataset,Mixture_1,Mixture_2,Predicted_Experimental_Values
CGm01 ,1,17,0
CGm02 ,2,18,0
CGm03 ,3,19,0
$
$ head -n 4 submission-9747567.csv | cut -d, -f-4
,Dataset,Mixture_1,Mixture_2
0,CGm01,1,17
1,CGm02,2,18
2,CGm03,3,19
``` Thanks! @gdmac ,
Thank you for reaching out! That is odd - let me investigate your submission ID 9747567 and get back to you.
Drop files to upload
Trouble submitting final prediction page is loading…