Hi, By any chance, do anyone have any recommendations which software could provide me with chromosome bins from a denovo contig assembly by using HiC data and without any annotation?
If you want a contact matrix, many software packages can do this without any particular need for annotation. I can't speak for the others, but with diffHic, the workflow would be something like (i) align reads to the reference genome, (ii) call squareCounts to count the number of reads in each pair of chromosomal bins, and (iii) use InteractionSet::inflate to convert to a ContactMatrix.
Does those anchors would allow me to extract for each chromosomes a FASTA file e.g. we expecting to get 19 chromosomes so we would like to get 19 FASTA files? Do you have any code examples?
Where did the FASTA files come from? Once you've done the alignment, the sequence of the assembly has nothing to do with Hi-C data analysis. If you want to get subsequences, use the relevant functions from Biostrings.
Our goal is to scaffold our 4000 contings into 19 scaffolds/chromosomes with help of HiC data. Similar to [this](https://www.nature.com/articles/s41438-017-0013-y/figures/1). Unfortunately, LACHESIS is not working on our cluster and therefore I am looking for alternatives.
AFAIK, all of the packages you listed in your question are designed for analyzing interaction intensities - which is, after all, the purpose of doing Hi-C in the first place. I don't think they have any functions to perform/refine a genome assembly from Hi-C data. In fact, I don't know of many Bioconductor packages for genome assembly, I think most people would consider that to be a heavy-duty "pre-processing" step ("pre" because it occurs before biological interpretation) that is better handled by command line tools.
Each row and column is a bin. You can call
anchors
to get the genomic coordinates.Does those
anchors
would allow me to extract for each chromosomes a FASTA file e.g. we expecting to get 19 chromosomes so we would like to get 19 FASTA files? Do you have any code examples?Where did the FASTA files come from? Once you've done the alignment, the sequence of the assembly has nothing to do with Hi-C data analysis. If you want to get subsequences, use the relevant functions from Biostrings.
AFAIK, all of the packages you listed in your question are designed for analyzing interaction intensities - which is, after all, the purpose of doing Hi-C in the first place. I don't think they have any functions to perform/refine a genome assembly from Hi-C data. In fact, I don't know of many Bioconductor packages for genome assembly, I think most people would consider that to be a heavy-duty "pre-processing" step ("pre" because it occurs before biological interpretation) that is better handled by command line tools.
Those don't seem to be Biocondcutor packages, so you'd have to ask the authors directly.