made some things protected so that I can inherit them in MultiSampleCallerAccuracyTest

git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1185 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
jmaguire 2009-07-07 15:50:28 +00:00
parent 1fa71aa31d
commit 1db15ee468
1 changed files with 4 additions and 5 deletions

View File

@ -31,11 +31,10 @@ public class MultiSampleCaller extends LocusWalker<MultiSampleCaller.MultiSample
@Argument(fullName="call_indels", shortName="call_indels", required=false, doc="call indels?") public boolean CALL_INDELS = false;
// Private state.
List<String> sample_names;
private SAMFileHeader header;
PrintStream individual_output_file;
PrintStream discovery_output_file;
protected List<String> sample_names;
protected SAMFileHeader header;
protected PrintStream individual_output_file;
protected PrintStream discovery_output_file;
class MultiSampleCallResult
{