statnet / statnetWeb

A graphical user interface for network modeling with the 'statnet' software
GNU General Public License v3.0
29 stars 17 forks source link

remove superfluous option causing error #76

Closed chad-klumb closed 4 years ago

chad-klumb commented 4 years ago

This fixes the startup warnings/errors for me.

I removed the "Parallel" option from the control drop down menu since it doesn't appear to have been implemented anyway, cf.

https://github.com/statnet/statnetWeb/blob/b1be7c007f53fe7b6f738164064a413da07aec61/inst/shiny/statnetWeb/ui.R#L1218-L1219

The argument of length > 1 was c("MCMC","Parallel") here

https://github.com/statnet/statnetWeb/blob/b1be7c007f53fe7b6f738164064a413da07aec61/inst/shiny/statnetWeb/ui.R#L1186

which is now just c("MCMC").

martinamorris commented 4 years ago

Thank you @chad-klumb!