-
Notifications
You must be signed in to change notification settings - Fork 12
/
NAMESPACE
62 lines (55 loc) · 2.17 KB
/
NAMESPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Load the shared object
useDynLib(SeqArray,
SEQ_File_Init, SEQ_File_Done,
SEQ_FilterPushEmpty, SEQ_FilterPushLast, SEQ_FilterPop,
SEQ_MergeAllele, SEQ_MergeGeno, SEQ_MergePhase, SEQ_MergeInfo,
SEQ_MergeFormat,
SEQ_SetSpaceSample, SEQ_SetSpaceSample2,
SEQ_SetSpaceVariant, SEQ_SetSpaceVariant2, SEQ_GetSortedIndex,
SEQ_SetSpaceChrom, SEQ_SetSpaceAnnotID,
SEQ_SplitSelection, SEQ_SplitSelectionX,
SEQ_GetSpace, SEQ_GetSpaceSample, SEQ_GetSpaceVariant,
SEQ_Summary, SEQ_System,
SEQ_VCF_NumLines, SEQ_VCF_Split, SEQ_VCF_Parse,
SEQ_ToVCF_Init, SEQ_ToVCF_Done,
SEQ_Quote, SEQ_GetData, SEQ_ListVarData,
SEQ_Apply_Variant, SEQ_Apply_Sample, SEQ_BApply_Variant,
SEQ_ConvBED2GDS,
SEQ_SelectFlag, SEQ_ResetChrom,
SEQ_IntAssign, SEQ_AppendFill, SEQ_ClearVarMap,
SEQ_Pkg_Init,
SEQ_bgzip_create, SEQ_Progress, SEQ_ProgressAdd,
SEQ_Unit_SlidingWindows,
SEQ_ExternalName0, SEQ_ExternalName1, SEQ_ExternalName2,
SEQ_ExternalName3, SEQ_ExternalName4, SEQ_ExternalName5
)
# Import all packages listed as Imports or Depends
import(methods)
import(gdsfmt)
importFrom(stats, median, sd)
importFrom(parallel, clusterApply, clusterApplyLB, clusterCall, detectCores,
makeCluster, makeForkCluster, mclapply, stopCluster)
importFrom(utils, read.table, flush.console, write.table, str, tail,
type.convert)
importFrom(S4Vectors, DataFrame, SimpleList)
importClassesFrom(IRanges, IRanges)
importFrom(IRanges, IRanges, IntegerList, NumericList, CharacterList,
DataFrameList)
importClassesFrom(GenomicRanges, GRanges, GRangesList)
importFrom(GenomicRanges, GRanges)
importMethodsFrom(GenomicRanges, granges)
importMethodsFrom(GenomeInfoDb, seqnames, seqlevels)
importFrom(GenomeInfoDb, renameSeqlevels)
importFrom(Biostrings, DNAStringSet, DNAStringSetList)
# Registering S3 methods
S3method(print, SeqVCFHeaderClass)
S3method(print, SeqVarDataList)
S3method(print, SeqUnitListClass)
S3method(summary, SeqUnitListClass)
# Export all names
exportPattern("^seq*")
export(.Last.lib)
exportClasses(SeqVarGDSClass)
exportMethods(granges, ref, alt, qual, filt, header, fixed, info, geno,
colData, rowRanges)
exportMethods(seqClose, seqSetFilter)