Cecil Hilpert

Results 7 comments of Cecil Hilpert

I forgot to add blast.mli, I'll write it later.

Ajout également des sélecteurs dans prokka.ml pour pouvoir réutiliser les fichiers de sortie

I tried to create two different PR for blast and prokka but it fails, I don't know how to do it.

Hi, I don't think you can have these information directly by using ncbi-genome-download, it will probably require to interrogate other databases. In general, this kind of information is not well...

Of course, it gives me this : ### Serial implementation ```python u = mda.Universe(data.GRO_MEMPROT, data.XTC_MEMPROT) atom_groups_through_frames = [get_atoms_below10(u.atoms) for trj in u.trajectory] print(atom_groups_through_frames[0][0].position) print(atom_groups_through_frames[4][5].position) >> [ 9.83 48.320004 97.73001 ]...

For the "wrong position" error with n_jobs = 1, a solution for my specific problem is to return just atoms positions instead of all AtomGroup. I got the same kind...

Thanks you're right I always forget this AtomGroup/Universe link. Here `print(atom_groups_through_frames[4][5].position)` give the position of atom at timestep 0 but it's the 5th atom of the selection made at timestep...