diff --git a/GEAR/src/gear/subcommands/CommandArguments.java b/GEAR/src/gear/subcommands/CommandArguments.java index 587dce2..b7b9ad0 100644 --- a/GEAR/src/gear/subcommands/CommandArguments.java +++ b/GEAR/src/gear/subcommands/CommandArguments.java @@ -265,8 +265,8 @@ public void setPhenotypeFile(String pheFile) { public void setPhenotypeIndex(String[] pheIndex) { CommandSplitter CS = new CommandSplitter.Builder(pheIndex).OPT(Command.OPT_MPHE).IntMin(1).create(); this.mPheno = CS.ParseToInt(); - for(int i = 0; i < this.mPheno.length; i++) { - this.mPheno[i]--; + for (int i = 0; i < this.mPheno.length; i++) { +// this.mPheno[i]--; if (this.mPheno[i] < 0) { Logger.printUserLog("incorrect --mphe " + (mPheno[i]+1) + ". It should be > 0."); System.exit(0);