tbaccata / amica

amica: an interactive and user-friendly web-based platform for the analysis of proteomics data
GNU General Public License v3.0
22 stars 5 forks source link

Maximum upload size exceeded #23

Closed bolak92 closed 1 year ago

bolak92 commented 1 year ago

Hi, I am trying to analyze MaxQuant data on local installation of amica. But when I upload the proteinGroups.txt file, a message appears stating that the maximum upload size exceeded, how can I solve this issue? image

Regards, Bola

tbaccata commented 1 year ago

Dear Bola,

the max. file size is set to 75MB on the server and in the code on github. If you want to change it on your local version, you need to alter line 5 of the file server.R (https://github.com/tbaccata/amica/blob/master/amica/server.R):

options(shiny.maxRequestSize = 75 * 1024 ^ 2)

Here you can replace 75 with the number of MBs you'd need.

Best, Sebastian