* Use CSVDataSourceCommand to generate output DataSource file
*
* @return DataSource The subsample DataSource file
*/
private DataSource makeDataSource() {
CSVDataSourceBuilder bld = new CSVDataSourceBuilder()
.setDomain(source.getPreferenceDomain())
.setFile(getOutput());
return bld.build();
}