Changeset 3150
- Timestamp:
- Dec 23, 2013, 7:03:50 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/bam_iterator.cc
r2986 r3150 118 118 std::string outname("bam_iterator.bam"); 119 119 OutBamFile out(outname, in.header()); 120 std::copy(BamReadIterator(in), BamReadIterator(), BamWriteIterator(out)); 120 BamWriteIterator bam_out(out); 121 std::copy(BamReadIterator(in), BamReadIterator(), bam_out); 122 if (false) // avoid running; only compile 123 suite.test_output_iterator(bam_out); 121 124 out.close(); 122 125 … … 147 150 in.close(); 148 151 unlink(outname.c_str()); 152 149 153 } 150 154 #endif
Note: See TracChangeset
for help on using the changeset viewer.