Description Usage Arguments Examples
View source: R/variantCalling.R
False postive filter parser for label low quality reads
1 2 3 4 5 6 7 8 9 10 11 | fpfilterTool(
vcf,
tumor_file,
sample_name,
ref,
fpfilter,
perl,
out_path,
bam_readcount,
tumor_vcf_id = "TUMOR"
)
|
tumor_file |
Tumor bam to file to perform the variant calling. |
ref |
Path for the reference genome to use for the alignment (fasta format) and the corresponding indexes generated with bwa index and a dictionary index file generated by CreateSequenceDictionary gatk tool. |
perl |
Path of perl executable. |
out_path |
Path where the output of the analysis will be saved. |
tumor_vcf_id |
Id of the tumor sample in vcf. By default 'TUMOR'. |
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
fpfilterTool(vcf = 'vcf/sample.vcf',
tumor_file = 'raw/sample_tumor.bam',
sample_name = 'sample'
ref = 'ref/hg38.fa',
out_path = 'rst',
perl = 'perl',
fpfilter = 'fpfilter-tool/fpfilter.pl',
bam_readcount = 'bam_readcount')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.