@@ -55,7 +55,6 @@ public class HalvadeOptions {
5555 public String ref ;
5656 public String STARGenome = null ;
5757 public String java = null ;
58- public String python = null ;
5958 public String gff = null ;
6059 public String tmpDir = "/tmp/halvade/" ;
6160 public String localRefDir = null ;
@@ -163,9 +162,6 @@ public int GetOptions(String[] args, Configuration hConf) throws IOException, UR
163162 if (java != null ) {
164163 HalvadeConf .setJava (hConf , java );
165164 }
166- if (python != null ) {
167- HalvadeConf .setPython (hConf , python );
168- }
169165 if (gff != null ) {
170166 HalvadeConf .setGff (hConf , gff );
171167 }
@@ -378,10 +374,6 @@ protected void createOptions() {
378374 .withDescription ("Sets the bed file containing relevant (Exome) regions which "
379375 + " will be used to filter in the GATK steps." )
380376 .create ("fbed" );
381- Option optPython = OptionBuilder .withArgName ("python" )
382- .hasArg ()
383- .withDescription ("Sets the location of the python binary if regular python command doesn't work." )
384- .create ("python" );
385377 Option optGff = OptionBuilder .withArgName ("gff" )
386378 .hasArg ()
387379 .withDescription ("Sets the gff file to be used with HTSeq-Count. This is required to run HTSeq-Count." )
@@ -467,7 +459,6 @@ protected void createOptions() {
467459 options .addOption (optCov );
468460 options .addOption (optMpn );
469461 options .addOption (optGff );
470- options .addOption (optPython );
471462 options .addOption (optRpn );
472463 options .addOption (optDry );
473464 options .addOption (optDrop );
@@ -564,9 +555,6 @@ protected boolean parseArguments(String[] args, Configuration halvadeConf) throw
564555 if (line .hasOption ("J" )) {
565556 java = line .getOptionValue ("J" );
566557 }
567- if (line .hasOption ("python" )) {
568- python = line .getOptionValue ("python" );
569- }
570558 if (line .hasOption ("gff" )) {
571559 gff = line .getOptionValue ("gff" );
572560 }
0 commit comments