Samuel Hawarden

Results 15 comments of Samuel Hawarden

Alternatively, just give the `wait()` function a secondary value such that `wait(100,200)` waits for some value between 100 and 200. There is already a line in `parse.py` that shows a...

I have edited the `injection/macros/macro.py`'s `add_wait` function to accomplish this: ``` def add_wait(self, time: Union[int, float], vary:Union[int, float]=0): """Wait from time to vary in milliseconds.""" time = _type_check(time, [int, float],...

Same issue here. ``` ❯ make test OK - Finished aligning test_data/test_paired.sam OK - converted test_data/test_paired.sam to sorted and indexed BAM [methratio] @Mon Apr 8 15:47:36 2024 Using 90% of...

Additional edit of `macro.py` to allow wait to accept variables defined by `set(foo,#)` ``` def add_wait(self, time: Union[str, int], vary: int=0): """Wait time in milliseconds.""" time = _type_check(time, [int], "wait",...

It currently takes a relatively long time to switch profile since it destroys and recreates the device. During which time your input device stops working. And woe betide you if...