Package | Description |
---|---|
htsjdk.variant.variantcontext |
Modifier and Type | Method and Description |
---|---|
static List<VariantContextUtils.JexlVCMatchExp> |
VariantContextUtils.initializeMatchExps(List<String> names,
List<String> exps)
Method for creating JexlVCMatchExp from input walker arguments names and exps.
|
static List<VariantContextUtils.JexlVCMatchExp> |
VariantContextUtils.initializeMatchExps(Map<String,String> names_and_exps)
Method for creating JexlVCMatchExp from input walker arguments mapping from names to exps.
|
static List<VariantContextUtils.JexlVCMatchExp> |
VariantContextUtils.initializeMatchExps(String[] names,
String[] exps)
Method for creating JexlVCMatchExp from input walker arguments names and exps.
|
static Map<VariantContextUtils.JexlVCMatchExp,Boolean> |
VariantContextUtils.match(VariantContext vc,
Collection<VariantContextUtils.JexlVCMatchExp> exps)
Matches each JexlVCMatchExp exp against the data contained in vc, and returns a map from these
expressions to true (if they matched) or false (if they didn't).
|
static Map<VariantContextUtils.JexlVCMatchExp,Boolean> |
VariantContextUtils.match(VariantContext vc,
Genotype g,
Collection<VariantContextUtils.JexlVCMatchExp> exps)
Matches each JexlVCMatchExp exp against the data contained in vc/g, and returns a map from these
expressions to true (if they matched) or false (if they didn't).
|
Modifier and Type | Method and Description |
---|---|
static boolean |
VariantContextUtils.match(VariantContext vc,
Genotype g,
VariantContextUtils.JexlVCMatchExp exp)
Returns true if exp match VC/g.
|
static boolean |
VariantContextUtils.match(VariantContext vc,
VariantContextUtils.JexlVCMatchExp exp)
Returns true if exp match VC.
|
Modifier and Type | Method and Description |
---|---|
static Map<VariantContextUtils.JexlVCMatchExp,Boolean> |
VariantContextUtils.match(VariantContext vc,
Collection<VariantContextUtils.JexlVCMatchExp> exps)
Matches each JexlVCMatchExp exp against the data contained in vc, and returns a map from these
expressions to true (if they matched) or false (if they didn't).
|
static Map<VariantContextUtils.JexlVCMatchExp,Boolean> |
VariantContextUtils.match(VariantContext vc,
Genotype g,
Collection<VariantContextUtils.JexlVCMatchExp> exps)
Matches each JexlVCMatchExp exp against the data contained in vc/g, and returns a map from these
expressions to true (if they matched) or false (if they didn't).
|