Skip to content
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ basicrta-*/

# macOS garbage
.DS_Store
build/
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Binary file not shown.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Binary file not shown.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Binary file not shown.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Binary file not shown.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Binary file not shown.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The pdbs and trajectories should be inside the tests/data/prestin directory and not in subdirectories (see datafiles.py).

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This file is 18 MB – why is this so much bigger? Is there a way to make it smaller??

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have removed subdirectories and put all the pdb and xtc files in tests/data/prestin.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The file pape3_20ns.xtc was larger than the others because its output was saved every 10 ps. I reduced the size for this file.

Binary file not shown.
9 changes: 9 additions & 0 deletions basicrta/tests/datafiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,15 @@
times = np.load((_data_ref / 'times.npy').as_posix())
PDB = (_data_ref / 'prot_chol.pdb').as_posix()
XTC = (_data_ref / 'prot_chol.xtc').as_posix()
PDB_PAPE_1 = (_data_ref / 'prestin' /'protein_pape1.pdb.bz2').as_posix()
XTC_PAPE_1 = (_data_ref / 'prestin' /'pape1_20ns.xtc').as_posix()
PDB_PAPE_2 = (_data_ref / 'prestin' /'protein_pape2.pdb.bz2').as_posix()
XTC_PAPE_2 = (_data_ref / 'prestin' /'pape2_20ns.xtc').as_posix()
PDB_PAPE_3 = (_data_ref / 'prestin' /'protein_pape3.pdb.bz2').as_posix()
XTC_PAPE_3 = (_data_ref / 'prestin' /'pape3_20ns.xtc').as_posix()



# This should be the last line: clean up namespace
del resources

Loading