Beispiel #1
0
 def test_save_SaveTrajs_IO(self):
     # Test that we're saving to disk alright
     flist = save_trajs(self.reader, self.sets, prefix=self.subdir)
     exist = True
     for f in flist:
         exist = exist and os.stat(f)
     self.assertTrue(exist, "Could not write to disk")
Beispiel #2
0
    def test_save_SaveTrajs_multipass_with_stride(self):
        # With the inmemory option = True

        for stride in self.strides[:]:
            # Since none of the trajfiles have more than 30 frames, the frames have to be re-drawn for every stride
            sets = np.copy(self.sets)
            sets[0][:, 1] = np.random.randint(0,
                                              high=30 / stride,
                                              size=np.shape(sets[0])[0])
            sets[1][:, 1] = np.random.randint(0,
                                              high=30 / stride,
                                              size=np.shape(sets[1])[0])

            __ = save_trajs(self.reader,
                            sets,
                            outfiles=self.one_pass_files,
                            inmemory=False,
                            stride=stride)

            traj_1_pass = single_traj_from_n_files(self.one_pass_files,
                                                   top=self.pdbfile)

            # Also the reference has to be re-drawn using the stride. For this, we use the re-scale the strided
            # frame-indexes to the unstrided value
            sets[0][:, 1] *= stride
            sets[1][:, 1] *= stride
            traj_ref = save_traj_w_md_load_frame(self.reader, sets)

            # Check for diffs
            (found_diff,
             errmsg) = compare_coords_md_trajectory_objects(traj_1_pass,
                                                            traj_ref,
                                                            atom=0)
            self.assertFalse(found_diff, errmsg)
Beispiel #3
0
    def test_save_SaveTrajs_multipass(self):

        # Without the "inmemory" option, i.e. multipass
        __ = save_trajs(self.reader, self.sets, outfiles=self.n_pass_files)

        # Reload the object to memory
        traj_n_pass = single_traj_from_n_files(self.n_pass_files,
                                               top=self.pdbfile)

        # Check for diffs
        (found_diff,
         errmsg) = compare_coords_md_trajectory_objects(traj_n_pass,
                                                        self.traj_ref,
                                                        atom=0)

        self.assertFalse(found_diff, errmsg)
Beispiel #4
0
    def test_save_SaveTrajs_onepass(self):

        # With the inmemory option = True
        __ = save_trajs(self.reader,
                        self.sets,
                        outfiles=self.one_pass_files,
                        inmemory=True)

        traj_1_pass = single_traj_from_n_files(self.one_pass_files,
                                               top=self.pdbfile)

        # Check for diffs
        (found_diff,
         errmsg) = compare_coords_md_trajectory_objects(traj_1_pass,
                                                        self.traj_ref,
                                                        atom=0)
        self.assertFalse(found_diff, errmsg)
Beispiel #5
0
 def test_out_of_bound_indexes(self):
     # assert ValueError with index info is raised for faulty input
     self.sets[0][:, 1] *= 100000
     with self.assertRaises(ValueError) as raised:
         save_trajs(self.reader, self.sets, outfiles=self.one_pass_files)