Examples of BciFileFaker


Examples of picard.illumina.parser.fakers.BciFileFaker

    @Override
    public List<String> fakeFiles(final List<Integer> expectedTiles, final int[] expectedCycles,
                                  final IlluminaFileUtil.SupportedIlluminaFormat format) {
        //we need to fake a bci file for the tile index
        final BciFileFaker bciFileFaker = new BciFileFaker();
        try {
            bciFileFaker.fakeBciFile(bci, expectedTiles);
            tileIndex = new TileIndex(bci);
            faker.fakeFile(base, expectedTiles, lane, extension);
            final File[] filesMatchingRegexp = IOUtil.getFilesMatchingRegexp(base, matchPattern);
            if (filesMatchingRegexp == null || filesMatchingRegexp.length == 0) {
                dataFile = null;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.