pneuvial / c3co

Inferring cancer cell clonality from copy-number data
5 stars 1 forks source link

Input data format #12

Open pneuvial opened 7 years ago

pneuvial commented 7 years ago

The current input format for the c3co function involves a list of data.frames with 4 columns (total CN, DH, position, chromosome), and an argument 'stat' to explicitly specify whether to work on total CN only or jointly on total CN, DH :

function (dat, stat = c("C1C2", "TCN"), ...)

It seems to me that a more efficient and user-friendly signature for this function would be:

function (CN, DH=NULL, chromosome=NULL, position=NULL, ...)

where :

jchiquet commented 7 years ago

Nice self-assignment !