Skip to content

v0.9.1

Compare
Choose a tag to compare
@soccin soccin released this 09 Mar 03:15
· 113 commits to master since this release
a69a647

Accepted pull request and refactored the load_data code to now be a function that is called rather than R-code that sets global variables. To load the tables now do:

source("load_data.R")
dat=load_data(params$argosDir,params$sampleID)

and now the tables are bundled in a list returned by the function. The list contains:

list(
        summaryTbl=summaryTbl,
        tbl01=tbl01,
        mafTbl=mafTbl,
        cnvTbl=cnvTbl,
        cnvTblFull=cnvTblFull,
        fusionTbl=fusionTbl
    )

Also have added the fusion table and the summary table is no longer dummy text but has actual values.

What's Changed

New Contributors

  • @svural made their first contribution in #1

Full Changelog: v0.1.1...v0.9.1