You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using --region with hicBuildMatrix I have noticed that memory usage is still high even for small matrix regions. This seems to be related to --restrictionCutFile from hicFindRestSite as the rest site file still corresponds to the full genome.
I tried sub-setting the restrictionCutFile to include only regions within my desired region (+/- a buffer of a few regions) and reran hicBuildMatrix. Memory usage was significantly reduced but the matrix appeared to produce identical results.
I guess somewhere in the hicBuildMatrix code the full restrictionCutFile is processed regardless of the --region argument? Would it be possible to consider only the appropriate restriction sites when --region is specified to significantly reduce memory usage.
Thanks,
Stephen
The text was updated successfully, but these errors were encountered:
I guess somewhere in the hicBuildMatrix code the full restrictionCutFile is processed regardless of the --region argument? Would it be possible to consider only the appropriate restriction sites when --region is specified to significantly reduce memory usage.
Yes, it is just read as it was given by the user and the region parameter is not considered. I will add it to my TODO list to improve this in a future version.
Hi,
Thanks for developing this great tool!
When using
--region
with hicBuildMatrix I have noticed that memory usage is still high even for small matrix regions. This seems to be related to--restrictionCutFile
fromhicFindRestSite
as the rest site file still corresponds to the full genome.I tried sub-setting the restrictionCutFile to include only regions within my desired region (+/- a buffer of a few regions) and reran hicBuildMatrix. Memory usage was significantly reduced but the matrix appeared to produce identical results.
I guess somewhere in the hicBuildMatrix code the full restrictionCutFile is processed regardless of the
--region
argument? Would it be possible to consider only the appropriate restriction sites when--region
is specified to significantly reduce memory usage.Thanks,
Stephen
The text was updated successfully, but these errors were encountered: