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

Commit

Permalink
add symbol/hgvs[g] to output
Browse files Browse the repository at this point in the history
  • Loading branch information
inodb committed Dec 12, 2018
1 parent 4e4b76c commit fed3ac3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/java/org/genomenexus/vep_wrapper/VepRunner.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ public static String run(List<String> regions, Boolean convertToListJSON) throws
commands.add("vep");
commands.add("--cache");
commands.add("--offline");
commands.add("--fasta");
commands.add("/opt/vep/.vep/homo_sapiens/92_GRCh37/Homo_sapiens.GRCh37.75.dna.primary_assembly.fa.gz");
commands.add("--symbol");
commands.add("--hgvs");
commands.add("--hgvsg");
//commands.add("--port");
//commands.add("3337");
commands.add("--assembly");
Expand Down

0 comments on commit fed3ac3

Please sign in to comment.