# NOT RUN {
# file paths
airr_file = system.file('extdata', '10x_airr_rearrangement.tsv.gz', package = 'TrustVDJ')
contig_file = system.file('extdata', '10x_all_contig_annotations.csv.gz', package = 'TrustVDJ')
#or contig_file =
#system.file('extdata', '10x_filtered_contig_annotations.csv.gz', package = 'TrustVDJ')
consensus_file = system.file('extdata', '10x_consensus_annotations.csv.gz', package = 'TrustVDJ')
clonotype_file = system.file('extdata', '10x_clonotypes.csv.gz', package = 'TrustVDJ')
# both AIRR and contig
data = Read10x(airr_file = airr_file, contig_file = contig_file)
head(data)
# only AIRR
data = Read10x(airr_file = airr_file)
head(data)
# only contig
data = Read10x(contig_file = contig_file)
head(data)
# only consensus
data = Read10x(consensus_file = consensus_file)
head(data)
# only clonotype
data = Read10x(clonotype_file = clonotype_file)
head(data)
# }
Run the code above in your browser using DataLab