NathanSkene / EWCE

Expression Weighted Celltype Enrichment. See the package website for up-to-date instructions on usage.
https://nathanskene.github.io/EWCE/index.html
53 stars 25 forks source link

Make function arguments explicit #45

Closed bschilder closed 2 years ago

bschilder commented 2 years ago

Relying on argument position is prone to breaking; eg if argument number/order is changed later.

bschilder commented 2 years ago

my_function(arg1, arg2, arg3)
# to...
my_function(arg1 = arg1, arg2 = arg2, arg3 = arg3)