package ru.autosome.ape;
import ru.autosome.commons.backgroundModel.mono.Background;
import ru.autosome.commons.backgroundModel.mono.BackgroundModel;
import ru.autosome.commons.backgroundModel.mono.WordwiseBackground;
import ru.autosome.ape.calculation.findPvalue.CanFindPvalue;
import ru.autosome.ape.calculation.findPvalue.FindPvalueAPE;
import ru.autosome.ape.calculation.findPvalue.FindPvalueBsearchBuilder;
import ru.autosome.commons.cli.Helper;
import ru.autosome.commons.importer.PWMImporter;
import ru.autosome.commons.motifModel.mono.PWM;
import java.util.ArrayList;
import java.util.Collections;
public class FindPvalue extends ru.autosome.ape.cli.generalized.FindPvalue<PWM, BackgroundModel> {
@Override
protected String DOC_background_option() {
return "ACGT - 4 numbers, comma-delimited(spaces not allowed), sum should be equal to 1, like 0.25,0.24,0.26,0.25";
}
@Override
protected String DOC_run_string() {
return "java ru.autosome.ape.FindPvalue";
}
@Override
protected CanFindPvalue calculator() {
if (cache_calculator == null) {
if (thresholds_folder == null) {
cache_calculator = new FindPvalueAPE<PWM, BackgroundModel>(motif, background, discretizer, max_hash_size);
} else {
cache_calculator = new FindPvalueBsearchBuilder(thresholds_folder).pvalueCalculator(motif);
}
}
return cache_calculator;
}
@Override
protected void initialize_default_background() {
background = new WordwiseBackground();
}
@Override
protected void extract_background(String str) {
background = Background.fromString(str);
}
@Override
protected PWM loadMotif(String filename) {
PWMImporter importer = new PWMImporter(background, data_model, effective_count, transpose);
return importer.loadMotif(filename);
}
protected FindPvalue() {
initialize_defaults();
}
protected static FindPvalue from_arglist(ArrayList<String> argv) {
FindPvalue result = new FindPvalue();
Helper.print_help_if_requested(argv, result.documentString());
result.setup_from_arglist(argv);
return result;
}
protected static FindPvalue from_arglist(String[] args) {
ArrayList<String> argv = new ArrayList<String>();
Collections.addAll(argv, args);
return from_arglist(argv);
}
public static void main(String[] args) {
try {
FindPvalue cli = FindPvalue.from_arglist(args);
System.out.println(cli.report_table().report());
} catch (Exception err) {
System.err.println("\n" + err.getMessage() + "\n--------------------------------------\n");
err.printStackTrace();
System.err.println("\n--------------------------------------\nUse --help option for help\n\n" + new FindPvalue().documentString());
System.exit(1);
}
}
}