Issue with mutation signature extraction and I need a help #432
-
Hello, I used only MAF for both Sigminer and MAF and VCF for Sigflow. I generated these VCFs from BAM files that I downloaded from EGA, and used VCF2MAF to generate MAFs. Also, I ran the Sigminer and Sigflow with three different. They all gave the same error message. When I tested Sigflow with test files in sigflow/test, it generated all files listed in the manual. It created SBS-6, 96, and 1536 matrix, and created DBS-78 and 1248 matrix. After the message "Outputing tally results for SBS", the program stopped with the message I mentioned above. For Sigminer, I used this code: And this is the result from it: When I check the MAFs, all required inputs were there in the same format as in the test except Turmor_Sample_Barcode. All of variables of the field were Tumor in my MAFs. Please, let me know if there are any other information you are required. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
@eunksung Thanks for your question. Could you share your data |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Thank you once again for your help. As you mentioned, I tried to find the
mutation signature of each sample. I will try to use both single and
combined samples after re-install the sigminer. If there is still an
issue, then I will let you know. I hope you have a great day.
Thank you.
Kind regards,
Eun Kyu Sung
…On Tue, May 16, 2023 at 7:18 PM Shixiang Wang (王诗翔) < ***@***.***> wrote:
@eunksung
<https://urldefense.com/v3/__https://github.com/eunksung__;!!LIr3w8kk_Xxm!r1_A71Lfa3byzFEVm1bZdEmEIKpsnEWGflzO1QqkErJ-dZNYDYTxcZTykzbR1bGjUYU88dXNRa3zEKVLR--7HUY$>
The package is typically handling multiple samples. However, you have only
one sample and the data caused some unexpected class changes from "matrix"
to "vector". Thanks for your reporting for making sigminer more robust. I
have updated the package, could you install and re-run it?
devtools::install_github("ShixiangWang/sigminer")
library(sigminer)
LU_FF55 = read_maf("~/../Downloads/LU-FF55.snvs.vep.maf")
mt_tally2 <- sig_tally(
LU_FF55,
method = "S",
mode= c("SBS"),
genome_build = "hg19",
use_syn = TRUE,
add_trans_bias = TRUE
)
# ref_genome = "BSgenome.Hsapiens.1000genomes.hs37d5",
***@***.***$Tumor_Sample_Barcode
BTW. Your data is a little strange to me, there are too many silent
mutations in your data just for one sample.
—
Reply to this email directly, view it on GitHub
<https://urldefense.com/v3/__https://github.com/ShixiangWang/sigminer/discussions/432*discussioncomment-5922454__;Iw!!LIr3w8kk_Xxm!r1_A71Lfa3byzFEVm1bZdEmEIKpsnEWGflzO1QqkErJ-dZNYDYTxcZTykzbR1bGjUYU88dXNRa3zEKVL5j0XxVo$>,
or unsubscribe
<https://urldefense.com/v3/__https://github.com/notifications/unsubscribe-auth/A27HBIKDPADR6C2NLBCD2K3XGQYQZANCNFSM6AAAAAAX7BVFKM__;!!LIr3w8kk_Xxm!r1_A71Lfa3byzFEVm1bZdEmEIKpsnEWGflzO1QqkErJ-dZNYDYTxcZTykzbR1bGjUYU88dXNRa3zEKVL_93zSyw$>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
@eunksung The package is typically handling multiple samples. However, you have only one sample and the data caused some unexpected class changes from "matrix" to "vector". Thanks for your reporting for making sigminer more robust. I have updated the package, could you install and re-run it?
BTW. Your data is a little strange to me, th…