Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from dnanexus/update_version
Browse files Browse the repository at this point in the history
Updating to v0.1.7
  • Loading branch information
Samantha Zarate authored Jul 19, 2018
2 parents 97517b1 + 5ac6a31 commit aedd253
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 22 deletions.
27 changes: 6 additions & 21 deletions dx_app_code/parliament2/dxapp.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"WGS"
],
"dxapi": "1.0.0",
"version": "0.1.6",
"version": "0.1.7",
"inputSpec": [
{
"name": "illumina_bam",
Expand Down Expand Up @@ -138,13 +138,6 @@
"class": "boolean",
"default": false
},
{
"name": "output_log_files",
"label": "Output Log Files?",
"help": "If selected, log files (if applicable) will be uploaded as output. Currently only implemented for Breakseq and Manta.",
"class": "boolean",
"default": true
},
{
"name": "run_genotype_candidates",
"label": "Genotype Candidates?",
Expand Down Expand Up @@ -200,14 +193,6 @@
"class": "file",
"patterns": ["*.tar.gz"],
"optional": true
},
{
"name": "log_files",
"label": "Log Files",
"help": "(Optional) Log files for structural variant callers.",
"class": "file",
"patterns": ["*.txt"],
"optional": true
}
],
"runSpec": {
Expand Down Expand Up @@ -235,16 +220,16 @@
"doi:10.1186/s12864-015-1479-3"
],
"upstreamAuthor": "Baylor College of Medicine",
"whatsNew": "* 0.1.6: Bug fixes.\n* 0.1.5: Dockerized Parliament2.\n* 0.1.0: Adding Parliament2."
"whatsNew": "* 0.1.7: Update CNVnator, SVTyper; bug fixes.\n* 0.1.6: Bug fixes.\n* 0.1.5: Dockerized Parliament2.\n* 0.1.0: Adding Parliament2."
},
"regionalOptions": {
"aws:us-east-1": {
"assetDepends": [
{
"project": "project-FBbG4280Qg43bZJ1Jyyk8F8v",
"project": "project-FBbQqQj026K9PF53332ZFBB9",
"folder": "/",
"version": "0.0.1",
"name": "parliament2"
"name": "parliament2:0.1.7"
}
],
"systemRequirements": {
Expand All @@ -259,7 +244,7 @@
"project": "project-FBbQqG895xZxxGFV3281QqqY",
"folder": "/",
"version": "0.0.1",
"name": "parliament2:0.0.1"
"name": "parliament2:0.1.7"
}
],
"systemRequirements": {
Expand All @@ -269,5 +254,5 @@
}
}
},
"openSource": false
"openSource": true
}
2 changes: 1 addition & 1 deletion dx_app_code/parliament2/parliament2.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def main(**job_inputs):
ref_name = "/home/dnanexus/in/{0}".format(ref_genome.name)
dxpy.download_dxfile(ref_genome, ref_name)

docker_call = ['dx-docker', 'run', '-v', '/home/dnanexus/in/:/home/dnanexus/in/', '-v', '/home/dnanexus/out/:/home/dnanexus/out/','parliament2', '--bam', bam_name, '-r', ref_name, '--prefix', str(prefix)]
docker_call = ['dx-docker', 'run', '-v', '/home/dnanexus/in/:/home/dnanexus/in/', '-v', '/home/dnanexus/out/:/home/dnanexus/out/','parliament2:0.1.7', '--bam', bam_name, '-r', ref_name, '--prefix', str(prefix)]

if 'illumina_bai' in job_inputs:
input_bai = dxpy.open_dxfile(job_inputs['illumina_bai'])
Expand Down

0 comments on commit aedd253

Please sign in to comment.