Added newly-required documentation to arguments so that build can complete successfully.

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@681 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
kiran 2009-05-12 20:26:10 +00:00
parent 688358190c
commit 219eb60716
1 changed files with 2 additions and 2 deletions

View File

@ -51,10 +51,10 @@ public class SomaticMutationWalker extends LocusWalker<Integer, Integer> {
}
}
@Argument(fullName = "tumor_sample_name", shortName = "s1", required = true)
@Argument(fullName = "tumor_sample_name", shortName = "s1", required = true, doc="Name of the tumor sample")
public String tumorSampleName;
@Argument(fullName = "normal_sample_name", shortName = "s2", required = true)
@Argument(fullName = "normal_sample_name", shortName = "s2", required = true, doc="Name of the normal sample")
public String normalSampleName;
public void initialize() {