File: ConcatenateAlignmentModeTest.java

package info (click to toggle)
libgoby-java 3.3.1%2Bdfsg2-11
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 58,108 kB
  • sloc: java: 78,105; cpp: 5,011; xml: 3,170; python: 2,108; sh: 1,575; ansic: 277; makefile: 114
file content (23 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package org.campagnelab.goby.modes;

import org.junit.Ignore;
import org.junit.Test;

import java.io.File;

import static org.junit.Assert.*;

/**
 * Created by fac2003 on 5/10/16.
 */
public class ConcatenateAlignmentModeTest {
    @Ignore
    @Test
    public void execute() throws Exception {
        ConcatenateAlignmentMode concatMode = new ConcatenateAlignmentMode();
        concatMode.configure("--mode ca test-data/bam/Example.bam test-data/bam/Example2.bam -o test-results/dup".split(" "));
        concatMode.execute();
        assertTrue(new File("test-results/dup.entries").exists());
    }

}