2009-07-22 06:23:28 +08:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2009 The Broad Institute
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person
|
|
|
|
|
* obtaining a copy of this software and associated documentation
|
|
|
|
|
* files (the "Software"), to deal in the Software without
|
|
|
|
|
* restriction, including without limitation the rights to use,
|
|
|
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the
|
|
|
|
|
* Software is furnished to do so, subject to the following
|
|
|
|
|
* conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be
|
|
|
|
|
* included in all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
|
|
|
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
|
|
|
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2009-03-18 07:22:37 +08:00
|
|
|
package org.broadinstitute.sting.gatk;
|
|
|
|
|
|
2009-07-22 02:32:22 +08:00
|
|
|
import java.util.*;
|
2009-12-05 07:24:29 +08:00
|
|
|
import java.io.InputStream;
|
|
|
|
|
import java.io.IOException;
|
2009-03-18 07:22:37 +08:00
|
|
|
|
2009-07-10 07:59:53 +08:00
|
|
|
import org.broadinstitute.sting.gatk.walkers.*;
|
2009-05-20 07:26:17 +08:00
|
|
|
import org.broadinstitute.sting.gatk.refdata.ReferenceOrderedDatum;
|
|
|
|
|
import org.broadinstitute.sting.gatk.refdata.ReferenceOrderedData;
|
2009-11-11 02:40:16 +08:00
|
|
|
import org.broadinstitute.sting.gatk.filters.FilterManager;
|
2009-05-16 05:02:12 +08:00
|
|
|
import org.broadinstitute.sting.utils.StingException;
|
2009-11-11 02:40:16 +08:00
|
|
|
import org.broadinstitute.sting.utils.PluginManager;
|
2009-12-08 03:23:12 +08:00
|
|
|
import org.broadinstitute.sting.utils.help.DisplayNameTaglet;
|
2009-12-12 12:04:37 +08:00
|
|
|
import org.broadinstitute.sting.utils.help.DescriptionTaglet;
|
|
|
|
|
import org.broadinstitute.sting.utils.help.SummaryTaglet;
|
2009-03-27 21:27:04 +08:00
|
|
|
import org.apache.log4j.Logger;
|
2009-07-10 07:59:53 +08:00
|
|
|
import net.sf.picard.filter.SamRecordFilter;
|
2009-03-18 07:22:37 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Created by IntelliJ IDEA.
|
|
|
|
|
* User: hanna
|
|
|
|
|
* Date: Mar 17, 2009
|
|
|
|
|
* Time: 3:14:28 PM
|
|
|
|
|
* To change this template use File | Settings | File Templates.
|
|
|
|
|
*/
|
2009-11-11 02:40:16 +08:00
|
|
|
public class WalkerManager extends PluginManager<Walker> {
|
2009-03-18 07:22:37 +08:00
|
|
|
|
2009-03-27 21:27:04 +08:00
|
|
|
/**
|
|
|
|
|
* our log, which we want to capture anything from this class
|
|
|
|
|
*/
|
|
|
|
|
private static Logger logger = Logger.getLogger(WalkerManager.class);
|
|
|
|
|
|
2009-12-05 07:24:29 +08:00
|
|
|
/**
|
|
|
|
|
* A collection of help text for walkers and their enclosing packages.
|
|
|
|
|
*/
|
|
|
|
|
private Properties helpText = new Properties();
|
|
|
|
|
|
2009-07-22 02:32:22 +08:00
|
|
|
public WalkerManager() {
|
2009-11-11 02:40:16 +08:00
|
|
|
super(Walker.class,"walker","Walker");
|
2009-12-05 07:24:29 +08:00
|
|
|
InputStream helpSourceFile = getClass().getClassLoader().getResourceAsStream("help.properties");
|
|
|
|
|
if(helpSourceFile != null) {
|
|
|
|
|
try {
|
|
|
|
|
helpText.load(helpSourceFile);
|
|
|
|
|
}
|
|
|
|
|
catch(IOException ex) {
|
|
|
|
|
throw new StingException("Unable to process help data");
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-07-22 06:23:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2009-12-05 07:24:29 +08:00
|
|
|
* Get the list of walkers currently available to the GATK, organized
|
|
|
|
|
* by package.
|
2009-07-22 06:23:28 +08:00
|
|
|
* @return Names of currently available walkers.
|
|
|
|
|
*/
|
2009-12-05 07:24:29 +08:00
|
|
|
public Map<String,Collection<Class<? extends Walker>>> getWalkerNamesByPackage() {
|
|
|
|
|
Map<String,Collection<Class<? extends Walker>>> walkersByPackage = new HashMap<String,Collection<Class<? extends Walker>>>();
|
|
|
|
|
for(Class<? extends Walker> walker: pluginsByName.values()) {
|
2009-12-10 04:12:35 +08:00
|
|
|
// Extract the name for the package; if the walker is in the unnamed package, use the empty string
|
|
|
|
|
String walkerPackage = walker.getPackage() != null ? walker.getPackage().getName() : "";
|
2009-12-05 07:24:29 +08:00
|
|
|
if(!walkersByPackage.containsKey(walkerPackage))
|
|
|
|
|
walkersByPackage.put(walkerPackage,new ArrayList<Class<? extends Walker>>());
|
|
|
|
|
walkersByPackage.get(walkerPackage).add(walker);
|
|
|
|
|
}
|
|
|
|
|
return Collections.unmodifiableMap(walkersByPackage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the display name for a given package.
|
|
|
|
|
* @param packageName Fully qualified package name.
|
|
|
|
|
* @return A suitable display name for the package.
|
|
|
|
|
*/
|
|
|
|
|
public String getPackageDisplayName(String packageName) {
|
2009-12-10 04:12:35 +08:00
|
|
|
// Try to find an override for the display name of this package.
|
2009-12-12 12:04:37 +08:00
|
|
|
String displayNameKey = String.format("%s.%s",packageName,DisplayNameTaglet.NAME);
|
|
|
|
|
String displayName = null;
|
|
|
|
|
if(helpText.containsKey(displayNameKey)) {
|
|
|
|
|
displayName = helpText.getProperty(displayNameKey);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
// If no override exists...
|
2009-12-10 04:12:35 +08:00
|
|
|
// ...try to compute the override from the text of the package name, while accounting for
|
|
|
|
|
// unpackaged walkers.
|
|
|
|
|
displayName = packageName.substring(packageName.lastIndexOf('.')+1);
|
|
|
|
|
if(displayName.trim().equals("")) displayName = "<unpackaged>";
|
|
|
|
|
}
|
|
|
|
|
return displayName;
|
2009-12-05 07:24:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the help text associated with a given package name.
|
|
|
|
|
* @param packageName Package for which to search for help text.
|
|
|
|
|
* @return Package help text, or "" if none exists.
|
|
|
|
|
*/
|
2009-12-12 12:04:37 +08:00
|
|
|
public String getPackageSummaryText(String packageName) {
|
|
|
|
|
String key = String.format("%s.%s",packageName,SummaryTaglet.NAME);
|
|
|
|
|
if(!helpText.containsKey(key))
|
2009-12-05 07:24:29 +08:00
|
|
|
return "";
|
2009-12-12 12:04:37 +08:00
|
|
|
return helpText.getProperty(key);
|
2009-12-05 07:24:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2009-12-12 12:04:37 +08:00
|
|
|
* Gets the summary help text associated with a given walker type.
|
2009-12-05 07:24:29 +08:00
|
|
|
* @param walkerType Type of walker for which to search for help text.
|
2009-12-12 12:04:37 +08:00
|
|
|
* @return Walker summary description, or "" if none exists.
|
|
|
|
|
*/
|
|
|
|
|
public String getWalkerSummaryText(Class<? extends Walker> walkerType) {
|
|
|
|
|
String walkerSummary = String.format("%s.%s",walkerType.getName(), SummaryTaglet.NAME);
|
|
|
|
|
if(!helpText.containsKey(walkerSummary))
|
|
|
|
|
return "";
|
|
|
|
|
return helpText.getProperty(walkerSummary);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the descriptive help text associated with a given walker type.
|
|
|
|
|
* @param walkerType Type of walker for which to search for help text.
|
|
|
|
|
* @return Walker full description, or "" if none exists.
|
2009-12-05 07:24:29 +08:00
|
|
|
*/
|
2009-12-12 12:04:37 +08:00
|
|
|
public String getWalkerDescriptionText(Class<? extends Walker> walkerType) {
|
|
|
|
|
String walkerDescription = String.format("%s.%s",walkerType.getName(), DescriptionTaglet.NAME);
|
|
|
|
|
if(!helpText.containsKey(walkerDescription))
|
2009-12-05 07:24:29 +08:00
|
|
|
return "";
|
2009-12-12 12:04:37 +08:00
|
|
|
return helpText.getProperty(walkerDescription);
|
2009-03-27 04:45:27 +08:00
|
|
|
}
|
|
|
|
|
|
2009-05-16 05:02:12 +08:00
|
|
|
/**
|
|
|
|
|
* Retrieves the walker class given a walker name.
|
|
|
|
|
* @param walkerName Name of the walker.
|
|
|
|
|
* @return Class representing the walker.
|
|
|
|
|
*/
|
2009-12-12 12:04:37 +08:00
|
|
|
public Class<Walker> getWalkerClassByName(String walkerName) {
|
|
|
|
|
return (Class<Walker>)pluginsByName.get(walkerName);
|
2009-03-18 07:22:37 +08:00
|
|
|
}
|
|
|
|
|
|
2009-05-16 05:02:12 +08:00
|
|
|
/**
|
|
|
|
|
* Gets the data source for the provided walker.
|
|
|
|
|
* @param walker The walker.
|
|
|
|
|
* @return Which type of data source to traverse over...reads or reference?
|
|
|
|
|
*/
|
|
|
|
|
public static DataSource getWalkerDataSource(Walker walker) {
|
|
|
|
|
Class<? extends Walker> walkerClass = walker.getClass();
|
|
|
|
|
By byDataSource = walkerClass.getAnnotation(By.class);
|
|
|
|
|
if( byDataSource == null )
|
|
|
|
|
throw new StingException("Unable to find By annotation for walker class " + walkerClass.getName());
|
|
|
|
|
return byDataSource.value();
|
|
|
|
|
}
|
|
|
|
|
|
2009-05-20 07:26:17 +08:00
|
|
|
/**
|
|
|
|
|
* Determine whether the given walker supports the given data source.
|
|
|
|
|
* @param walker Walker to query.
|
|
|
|
|
* @param dataSource Source to check for .
|
|
|
|
|
* @return True if the walker forbids this data type. False otherwise.
|
|
|
|
|
*/
|
|
|
|
|
public static boolean isAllowed(Walker walker, DataSource dataSource) {
|
|
|
|
|
Allows allowsDataSource = getWalkerAllowed(walker);
|
|
|
|
|
|
|
|
|
|
// Allows is less restrictive than requires. If an allows
|
|
|
|
|
// clause is not specified, any kind of data is allowed.
|
|
|
|
|
if( allowsDataSource == null )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return Arrays.asList(allowsDataSource.value()).contains(dataSource);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine whether the given walker supports the given reference ordered data.
|
|
|
|
|
* @param walker Walker to query.
|
|
|
|
|
* @param rod Source to check.
|
|
|
|
|
* @return True if the walker forbids this data type. False otherwise.
|
|
|
|
|
*/
|
|
|
|
|
public static boolean isAllowed(Walker walker, ReferenceOrderedData<? extends ReferenceOrderedDatum> rod) {
|
|
|
|
|
Allows allowsDataSource = getWalkerAllowed(walker);
|
|
|
|
|
|
|
|
|
|
// Allows is less restrictive than requires. If an allows
|
|
|
|
|
// clause is not specified, any kind of data is allowed.
|
|
|
|
|
if( allowsDataSource == null )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
// The difference between unspecified RMD and the empty set of metadata can't be detected.
|
|
|
|
|
// Treat an empty 'allows' as 'allow everything'. Maybe we can have a special RMD flag to account for this
|
|
|
|
|
// case in the future.
|
|
|
|
|
if( allowsDataSource.referenceMetaData().length == 0 )
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
for( RMD allowed: allowsDataSource.referenceMetaData() ) {
|
|
|
|
|
if( rod.matches(allowed.name(),allowed.type()) )
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Determine whether the given walker requires the given data source.
|
|
|
|
|
* @param walker Walker to query.
|
|
|
|
|
* @param dataSource Source to check for.
|
|
|
|
|
* @return True if the walker allows this data type. False otherwise.
|
|
|
|
|
*/
|
|
|
|
|
public static boolean isRequired(Walker walker, DataSource dataSource) {
|
|
|
|
|
Requires requiresDataSource = getWalkerRequirements(walker);
|
|
|
|
|
return Arrays.asList(requiresDataSource.value()).contains(dataSource);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a list of RODs required by the walker.
|
|
|
|
|
* @param walker Walker to query.
|
|
|
|
|
* @return True if the walker allows this data type. False otherwise.
|
|
|
|
|
*/
|
|
|
|
|
public static List<RMD> getRequiredMetaData(Walker walker) {
|
|
|
|
|
Requires requiresDataSource = getWalkerRequirements(walker);
|
|
|
|
|
return Arrays.asList(requiresDataSource.referenceMetaData());
|
|
|
|
|
}
|
|
|
|
|
|
2009-07-10 07:59:53 +08:00
|
|
|
/**
|
|
|
|
|
* Extracts filters that the walker has requested be run on the dataset.
|
|
|
|
|
* @param walker Walker to inspect for filtering requests.
|
2009-11-11 02:40:16 +08:00
|
|
|
* @param filterManager Manages the creation of filters.
|
2009-07-10 07:59:53 +08:00
|
|
|
* @return A non-empty list of filters to apply to the reads.
|
|
|
|
|
*/
|
2009-11-11 02:40:16 +08:00
|
|
|
public static List<SamRecordFilter> getReadFilters(Walker walker, FilterManager filterManager) {
|
2009-07-10 07:59:53 +08:00
|
|
|
List<SamRecordFilter> filters = new ArrayList<SamRecordFilter>();
|
2009-11-11 02:40:16 +08:00
|
|
|
for(Class<? extends SamRecordFilter> filterType: getReadFilterTypes(walker))
|
|
|
|
|
filters.add(filterManager.createFilterByType(filterType));
|
2009-07-10 07:59:53 +08:00
|
|
|
return filters;
|
|
|
|
|
}
|
|
|
|
|
|
2009-03-27 04:45:27 +08:00
|
|
|
/**
|
|
|
|
|
* Create a name for this type of walker.
|
2009-03-27 21:27:04 +08:00
|
|
|
*
|
2009-03-27 04:45:27 +08:00
|
|
|
* @param walkerType The type of walker.
|
|
|
|
|
* @return A name for this type of walker.
|
|
|
|
|
*/
|
2009-11-11 02:40:16 +08:00
|
|
|
@Override
|
|
|
|
|
public String getName(Class<? extends Walker> walkerType) {
|
2009-03-27 04:45:27 +08:00
|
|
|
String walkerName = "";
|
|
|
|
|
|
2009-03-27 21:27:04 +08:00
|
|
|
if (walkerType.getAnnotation(WalkerName.class) != null)
|
|
|
|
|
walkerName = walkerType.getAnnotation(WalkerName.class).value().trim();
|
2009-11-11 02:40:16 +08:00
|
|
|
else
|
|
|
|
|
walkerName = super.getName(walkerType);
|
2009-03-27 04:45:27 +08:00
|
|
|
|
|
|
|
|
return walkerName;
|
|
|
|
|
}
|
2009-05-20 07:26:17 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Utility to get the requires attribute from the walker.
|
|
|
|
|
* Throws an exception if requirements are missing.
|
|
|
|
|
* @param walker Walker to query for required data.
|
|
|
|
|
* @return Required data attribute.
|
|
|
|
|
*/
|
|
|
|
|
private static Requires getWalkerRequirements(Walker walker) {
|
|
|
|
|
Class<? extends Walker> walkerClass = walker.getClass();
|
|
|
|
|
Requires requiresDataSource = walkerClass.getAnnotation(Requires.class);
|
|
|
|
|
if( requiresDataSource == null )
|
|
|
|
|
throw new StingException( "Unable to find data types required by walker class " + walkerClass.getName());
|
|
|
|
|
return requiresDataSource;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Utility to get the forbidden attribute from the walker.
|
|
|
|
|
* @param walker Walker to query for required data.
|
|
|
|
|
* @return Required data attribute. Null if forbidden info isn't present.
|
|
|
|
|
*/
|
|
|
|
|
private static Allows getWalkerAllowed(Walker walker) {
|
|
|
|
|
Class<? extends Walker> walkerClass = walker.getClass();
|
|
|
|
|
Allows allowsDataSource = walkerClass.getAnnotation(Allows.class);
|
|
|
|
|
return allowsDataSource;
|
|
|
|
|
}
|
2009-07-10 07:59:53 +08:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Gets the list of filtering classes specified as walker annotations.
|
|
|
|
|
* @param walker The walker to inspect.
|
|
|
|
|
* @return An array of types extending from SamRecordFilter. Will never be null.
|
|
|
|
|
*/
|
|
|
|
|
private static Class<? extends SamRecordFilter>[] getReadFilterTypes(Walker walker) {
|
|
|
|
|
Class<? extends Walker> walkerClass = walker.getClass();
|
|
|
|
|
if( !walkerClass.isAnnotationPresent(ReadFilters.class) )
|
|
|
|
|
return new Class[0];
|
|
|
|
|
return walkerClass.getAnnotation(ReadFilters.class).value();
|
|
|
|
|
}
|
2009-03-18 07:22:37 +08:00
|
|
|
}
|