コード例 #1
0
 def test_splitfile_identity(self):
     col_index = 2
     output_path = "outfile/path/"
     delim = "\|"
     test_body = "read1|+|chr14\nread2|+|chr14\nread3|+|chr14"
     input_filename = "tempfile.txt"
     input_filepath = "/foo/bar/" + input_filename
     file_system = MockFileSystem({input_filepath:test_body})
     
     splitfile(file_system, input_filepath, output_path, col_index, delim)
     
     writers = file_system.writers
     self.assertEqual(1, len(writers))
     newfile_name = "{0}{1}.{2}.prt".format(output_path, input_filename, "chr14")
     self.assertEqual(test_body.splitlines(), writers[newfile_name].lines())
コード例 #2
0
    def test_splitfile_funkyRE(self):
        col_index = 2
        output_path = ""
        delim = "\s+"
        test_body_a = "read1   + chr14\nread2  +   chr14\nread3      +\tchr14"
        input_filepath = "tempfile.txt" 
        file_system = MockFileSystem({input_filepath : test_body_a})

        splitfile(file_system, input_filepath , output_path, col_index, delim)
    
        writers = file_system.writers
        self.assertEqual(1, len(writers))

        newfile_name1 = "{0}.{1}.prt".format(input_filepath, "chr14")
        self.assertEqual(test_body_a.splitlines(), writers[newfile_name1].lines())
        
        for key in writers:
            self.assertEqual(True, writers[key].wasClosed)
コード例 #3
0
    def test_splitfile_twoFiles(self):
        col_index = 2
        output_path = ""
        delim = "\|"
        test_body_a = "read1|+|chr14\nread2|+|chr14\nread3|+|chr14\n"
        test_body_b = "read4|+|chr15"
        input_filepath = "tempfile.txt" 
        file_system = MockFileSystem({input_filepath : test_body_a + test_body_b})

        splitfile(file_system, input_filepath , output_path, col_index, delim)
    
        writers = file_system.writers
        self.assertEqual(2, len(writers))

        newfile_name1 = "{0}.{1}.prt".format(input_filepath, "chr14")
        newfile_name2 = "{0}.{1}.prt".format(input_filepath, "chr15")
        self.assertEqual(test_body_a.splitlines(), writers[newfile_name1].lines())
        self.assertEqual(test_body_b.splitlines(), writers[newfile_name2].lines())
        
        for key in writers:
            self.assertEqual(True, writers[key].wasClosed)