-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Many new classes for comparing Kohli CNV and GATK datasets.
- Loading branch information
u0028003
committed
Dec 30, 2024
1 parent
391bc2f
commit 68be0b6
Showing
41 changed files
with
4,492 additions
and
1,316 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
package edu.utah.kohli; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class AccuGenGene { | ||
|
||
private String geneName; | ||
private ArrayList<AccuGenProbe> probes = new ArrayList<AccuGenProbe>(); | ||
|
||
public AccuGenGene (String geneName) { | ||
this.geneName = geneName; | ||
} | ||
|
||
public double meanZScore(double[] testAFs) { | ||
return 0; | ||
} | ||
|
||
public ArrayList<AccuGenProbe> getProbes() { | ||
return probes; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.