collUtils (version 1.0.5)

collUtils-package: A auxiliary package for CollapsABEL.

Description

This package includes some low level functions for processing PLINK input and output files written in Java or C++. Normally you shouldn't need to directly use functions from this package.

Arguments

Details

ll{ Package: collUtils Type: Package Version: 1.0 Date: 2015-06-12 License: GPL-3 }

References

To be updated.

Examples

Run this code
require(collUtils)
rbed_obj = rBed("test.bed")
geno = rbed_obj$readBed()
geno = getJArray(geno)
print(geno)
fn = tempfile()
f = file(fn, "wb")
writeBin("a", f)
writeBin("b", f)
writeBin("c", f)
close(f)
file.info(fn)$size == 6
truncateEndOfFile(fn, 1)

Run the code above in your browser using DataLab