-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathNAMESPACE
More file actions
62 lines (55 loc) · 2.24 KB
/
NAMESPACE
File metadata and controls
62 lines (55 loc) · 2.24 KB
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_GetData, SEQ_ListVarData,
SEQ_Apply_Variant, SEQ_Apply_Sample, SEQ_BApply_Variant,
SEQ_ConvBED2GDS,
SEQ_SelectFlag, SEQ_ResetChrom,
SEQ_SetProcess, SEQ_SetProcessBlock, SEQ_SecToTime,
SEQ_AppendFill, SEQ_ClearVarMap, SEQ_BufferPosition,
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, capture.output, flush.console, read.table, write.table,
str, tail, type.convert)
importFrom(digest, digest)
importFrom(S4Vectors, DataFrame, SimpleList)
importClassesFrom(IRanges, IRanges)
importFrom(IRanges, IRanges, LogicalList, IntegerList, NumericList,
CharacterList, RawList, FactorList, DataFrameList)
importClassesFrom(GenomicRanges, GRanges, GRangesList)
importFrom(GenomicRanges, GRanges)
importMethodsFrom(GenomicRanges, granges)
importMethodsFrom(Seqinfo, seqnames, seqlevels, "seqlevels<-")
importFrom(Biostrings, DNAStringSet, DNAStringSetList)
# Registering S3 methods
S3method(print, SeqVCFHeaderClass)
S3method(print, SeqVarDataList)
S3method(print, SeqUnitListClass)
S3method(summary, SeqUnitListClass)
# Export all names
exportPattern("^seq")
exportClasses(SeqVarGDSClass)
exportMethods(granges, ref, alt, qual, filt, header, fixed, info, geno,
colData, rowRanges)
exportMethods(seqClose, seqSetFilter)