Description Value Slots See Also Examples
The AbSeqRep object contains all metadata associated with
the AbSeq (python backend) run conducted on it. This S4 class represents
a single sample(repertoire) and it can be "combined" with other samples
by using the + operator to create an AbSeqCRep object.
This value, in turn, can be used as the first argument to
report which generates a comparison between all samples included
in the + operation.
Users do not manually construct this class, but rather indirectly obtain this class object as a return value from the abseqReport and report functions.
AbSeqRep
f1character. Path to FASTA/FASTQ file 1.
f2character. Path to FASTA/FASTQ file 2.
chaincharacter. Type of chain, possible values:
hv
lv
kv
klv
each representing Heavy, Lambda and Kappa respectively.
taskcharacter. Type of analysis conducted, possible values:
all
annotate
abundance
diversity
productivity
fastqc
primer
5utr
rsasimple
seqlen
secretion
seqlenclass
namecharacter. Name of analysis.
bitscorenumeric. Part of filtering criteria: V gene bitscore filter value.
qstartnumeric. Part of filtering criteria: V gene query start filter value.
sstartnumeric. Part of filtering criteria: V gene subject start filter value.
alignlennumeric. Part of filtering criteria: V gene alignment length filter value.
clonelimitnumeric. Number of clones to export into csv file. This is
only relevant in -t all or -t diversity where clonotypes
are exported into <outdir>/<name>/diversity/clonotypes
detailedCompositionlogical. Plots composition logo by IGHV families if set to true, otherwise, plots logos by FR/CDRs.
logcharacter. Path to log file.
mergercharacter. Merger used to merge paired-end reads.
fmtcharacter. File format of file1 and (if present) file2.
Possible values are FASTA or FASTQ.
sitescharacter. Path to restriction sites txt file.
This option is only used if -t rsasimple
primer5endANY. Path to 5' end primer FASTA file.
primer3endANY. Path to 3' end primer FASTA file.
trim5numeric. Number of nucleotides to trimd at the 5' end;
trim3numeric. Number of nucleotides to trimd at the 3' end;
outdircharacter. Path to output directory
primer5endoffsetnumeric. Number of nucleotides to offset before aligning
5' end primers in primer5end FASTA file.
threadsnumeric. Number of threads to run.
upstreamcharacter. Index (range) of upstream nucleotides to analyze.
This option is only used if -t 5utr or -t secretion.
seqtypecharacter. Sequence type, possible values are either dna
or protein.
databasecharacter. Path to IgBLAST database.
actualqstartnumeric. Query sequence's starting index (indexing starts from 1). This value overrides the inferred query start position by AbSeq.
fr4cutlogical. The end of FR4 is marked as the end of the sequence if
set to TRUE, otherwise the end of the sequence is either the end of the read
itself, or trimmed to --trim3 <num>.
domainSystemcharacter. Domain system to use in IgBLAST, possible
values are either imgt or kabat.
abseqReport returns a list of AbSeqRep
objects.
1 2 3 4 5 6 7 8 | # this class is not directly constructed by users, but as a return
# value from the abseqReport method.
# Use example data from abseqR as abseqPy's output, substitute this
# with your own abseqPy output directory
abseqPyOutput <- tempdir()
file.copy(system.file("extdata", "ex", package = "abseqR"), abseqPyOutput, recursive=TRUE)
samples <- abseqReport(file.path(abseqPyOutput, "ex"), report = 0)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.