adamsardar / stoneTrees

Integrating 'omics data with biological networks by solving Steiner Tree problems
Mozilla Public License 2.0
3 stars 3 forks source link

Move to using = rather than <- #27

Closed adamsardar closed 3 years ago

adamsardar commented 3 years ago

A root cause analysis of issue #25 shows that making an assignment via <- within a list could create a silent error. This is too dangerous to allow to continue.

Should we move towards using = rather than <- for assignment? See here, here and here. There's also a good old Twitter storm thread. It is the number one thing that I see people complain about in R ... why do we do it?