// Create the input (source tap), which is just a text file reader
BasePath inputPath = platform.makePath(inputFileName);
Tap sourceTap = platform.makeTap(platform.makeTextScheme(), inputPath);
// Create the sub-assembly that runs the fetch job
UserAgent userAgent = new UserAgent(options.getAgentName(), EMAIL_ADDRESS, WEB_ADDRESS);
Pipe importPipe = new Each("url importer", new Fields("line"), new LoadUrlFunction());
BaseScoreGenerator scorer = new FixedScoreGenerator();
BaseFetcher fetcher = new SimpleHttpFetcher(MAX_THREADS, userAgent);