Thank you for your insights! It makes my more comfortable with my decision to process like you have above.
I guess my question would be, once you have the RNA_integrated object and the DNA_integrated object, what is the line of code you use to create one integrated object that contains both the RNA and DNA? I have tried the code below but it does not work.
RNA_integrated[['ATAC']] <- ATAC_integrated[['ATAC']]
RNA_integrated[['integrated_lsi']] <- ATAC_integrated[['integrated_lsi']]
#says that I can't add this column using the '<-' function. I have tried other alternates like "Getassay"
RNA_integrated <- FindMultiModalNeighbors(RNA_integrated, reduction.list = list("pca", "integrated_lsi"), dims.list = list(1:50, 2:50))