misc_make_metadata(output = c("list", "json", "metafile"), destfile = NULL, name = NULL, file_type = c("text", "binary", "fasta", "csfasta", "fastq", "qual", "xsq", "sff", "bam", "bam_index", "illumina_export", "vcf", "sam", "bed", "archive", "juncs", "gtf", "gff", "enlis_genome"), qual_scale = c("sanger", "illumina13", "illumina15", "illumina18", "solexa"), seq_tech = c("454", "Helicos", "Illumina", "Solid", "IonTorrent"), sample = NULL, library = NULL, platform_unit = NULL, paired_end = NULL)
'list'
, 'json'
, or 'metafile'
.output = 'metafile'
.qual_scale
inside the pipeline. For BAM files, this value
should always be 'sanger'
.seq_tech
parameter
allows you to specify the sequencing technology used. This metadata
parameter is only required by some the tools and pipelines; however,
it is strongly recommended that you set it whenever possible, unless
you are certain that your pipeline will work without it.sample
parameter to specify
the sample identifier. The value supplied in this field will be written
to the read group tag (@RG:SM
) in SAM/BAM files generated from reads
with the specified Sample ID. AddOrReplaceReadGroups will use this
parameter as the value for the read group tag in a SAM/BAM file.library
parameter. The value supplied in this field will be written
to the read group tag (@RG:LB
) in SAM/BAM files generated from
reads with the specified Library ID. AddOrReplaceReadGroups will use
this parameter as the value for the read group tag in a SAM/BAM file.platform_unit
parameter. The value supplied in this field will be written to the read
group tag (@RG:PU
) in SAM/BAM files generated from the reads with
the specified Platform Unit. AddOrReplaceReadGroups will use this parameter
as the value for the read group tag of a SAM/BAM file.destfile = '~/c.elegans_chr2_test.fastq.meta'
misc_make_metadata(output = 'metafile',
destfile = destfile,
name = 'c.elegans_chr2_test.fastq',
file_type = 'fastq', qual_scale = 'illumina13',
seq_tech = 'Illumina')
Run the code above in your browser using DataLab