write_profile {seqCAT} | R Documentation |
Write an SNV profile to a file for later re-use.
write_profile(profile, file)
profile |
The SNV profile to be written (data frame). |
file |
The file to write to (path). |
This is a function for writing SNV profiles (created from VCF files) to disk for later re-use. Several formats are allowed, including BED, GTF, GFF and normal text files, which are automatically recognised based on the supplied filename.
None; writes to disk only.
# Load test profile data(test_profile_1) # Write test profile to file write_profile(test_profile_1, "test_profile_1.txt")