Skip to content

Commit

Permalink
Added myself to AUTHORS, modified CHANGELOG and added description of …
Browse files Browse the repository at this point in the history
…kwargs in the docstring.
  • Loading branch information
amdnsr committed Apr 6, 2021
1 parent f5dbfbf commit 6834541
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ Chronological list of authors
2021
- Aditya Kamath
- Leonardo Barneschi

- Ahmad Nasir
External code
-------------

Expand Down
5 changes: 4 additions & 1 deletion package/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The rules for this file:
??/??/?? tylerjereddy, richardjgowers, IAlibay, hmacdope, orbeckst, cbouy,
lilyminium, daveminh, jbarnoud, yuxuanzhuang, VOD555, ianmkenney,
calcraven,xiki-tempula, mieczyslaw, manuel.nuno.melo, PicoCentauri,
hanatok, rmeli, aditya-kamath, tirkarthi
hanatok, rmeli, aditya-kamath, tirkarthi, amdnsr

* 2.0.0

Expand Down Expand Up @@ -133,6 +133,9 @@ Enhancements
'protein' selection (#2751 PR #2755)
* Added an RDKit converter that works for any input with all hydrogens
explicit in the topology (Issue #2468, PR #2775)
* Added kwargs in the run method of analysis/base.py which can be passed to tqdm,
via the ProgressBar class, a (subclass of tqdm), to provide access to the
functionality provided by tqdm (Issue #3190, PR #3191)

Changes
* TPRParser now loads TPR files with `tpr_resid_from_one=True` by default,
Expand Down
3 changes: 3 additions & 0 deletions package/MDAnalysis/analysis/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,9 @@ def run(self, start=None, stop=None, step=None, verbose=None, **kwargs):
number of frames to skip between each analysed frame
verbose : bool, optional
Turn on verbosity
kwargs : keyword arguments, which will be used to access the
underlying functionality in tqdm class, via ProgressBar class,
specifically, to adjust the location of the bar on the screen
"""
logger.info("Choosing frames to analyze")
# if verbose unchanged, use class default
Expand Down

0 comments on commit 6834541

Please sign in to comment.