readfish targets
default parameter value of throttle
& readfish stats
#316
Replies: 6 comments 11 replies
-
Apologies for a mistake. I thought that |
Beta Was this translation helpful? Give feedback.
-
For 1: The throttle that will be used is 0.4 seconds as it is overridden by the command line using the For 2: @Adoni5 should be able to help. |
Beta Was this translation helpful? Give feedback.
-
A third question regarding target position file format. In the old version we used |
Beta Was this translation helpful? Give feedback.
-
Assuming you have seen - https://looselab.github.io/readfish/readfish.console.html#module-readfish.entry_points.stats There is a some missing documentation on this page, will get that sorted for the next release!
We don't currently truncate the reads when we do
The files are named as such - all reads that would have been proceed or unblock (for each condition) are found in |
Beta Was this translation helpful? Give feedback.
-
No - because when you run the readfish stats script it is analysing the read as a whole and telling you what it should do based on the logic in your toml file for the whole read. The only place that chunks come into play is during a live run when you are sequencing. In those cases, chunks will be assigned but the last decision is the one that is recorded. Please ask new unrelated questions in new issues as this helps other users find answers to similar questions. |
Beta Was this translation helpful? Give feedback.
-
Again - this is a new question so please open a new issue. In this case, readfish stats should probably give an error. However, it doesn't really make sense to run readfish stats with a no_op aligner. The no_op aligner doesn't align your data so there is no way for readfish stats to determine the logic of the underlying decisions made about the read. You should run readfish stats with the same toml file used for the readfish experiment you wish to analyse. |
Beta Was this translation helpful? Give feedback.
-
For
readfish targets
, I'm confused by what is the default value ofthrottle
. In [_cli_args.py], there is a lineDEFAULT_THROTTLE = 0.4
. but in [targets.py], the value is set to 0.1 ininit
:throttle: float = 0.1
. Which one is the value being used? Which should I change if I want to tweak this value?Please let me know if there is detailed documentation on using
readfish stats
as I was not able to find useful descriptions. After runningreadfish stats
with input of a fastq directory and toml (split into control and analysis region), I got 6 different fastq.gz files. Foranalysis
andcontrol
, each has three typesproceed
,stop_receiving
,unblock
. Does that mean all these reads are truncated into chunks sent for decision-making? If I only want to know which reads are eventuallyproceed
orunblocked
, what should I do?Beta Was this translation helpful? Give feedback.
All reactions