diff --git a/tools/jobs/realignTargetCreatorJob.json b/tools/jobs/realignTargetCreatorJob.json new file mode 100644 index 00000000..058cc1b5 --- /dev/null +++ b/tools/jobs/realignTargetCreatorJob.json @@ -0,0 +1,20 @@ +{ + + "inputBam_realign": { + "class": "File", + "path": "markDups.bam" + }, + "reference": { + "class": "File", + "path": "./outputFiles/hg19.fa", + }, + "jar_file": { + "class": "File", + "path": "GenomeAnalysisTK-2.8.jar", + }, + + "known": [{"class": "File", "path": "dbsnp_138.vcf"}, {"class": "File", "path": "../data//GATK-complete-workflow/Ref_datasets/Mills_and_1000G_gold_st.vcf"}, {"class": "File", "path": "../data//GATK-complete-workflow/Ref_datasets/1000G_phase1.indels.hg19.vcf"} ], + + "outputfile_realignTarget": "realignTargetCreator_output.intervals" +} + diff --git a/tools/jobs/samtools-rmdup-job.json b/tools/jobs/samtools-rmdup-job.json new file mode 100644 index 00000000..64b2273a --- /dev/null +++ b/tools/jobs/samtools-rmdup-job.json @@ -0,0 +1,8 @@ +{ + "input": { + "class": "File", + "path": "./test-files/dna.SRR096326.bam" + }, + "output_name": "dna.SRR096326.rmdup.bam", + "single_end": true +} diff --git a/tools/jobs/samtools-sort-job.json b/tools/jobs/samtools-sort-job.json new file mode 100644 index 00000000..121c912e --- /dev/null +++ b/tools/jobs/samtools-sort-job.json @@ -0,0 +1,10 @@ +{ + "input": { + "class": "File", + "path": "./test-files/rna.SRR948778.bam" + }, + "compression_level": 9, + "memory": "1G", + "threads": 4, + "output_name": "./test-files/rna.SRR948778.sorted.bam" +}