Replies: 5 comments 2 replies
-
I solved this by changing the format of the fastq file from windows to unix. |
Beta Was this translation helpful? Give feedback.
-
hello. I encountered the problem like this and I've tried the method you mentioned above, but the error wasn't solved. Could you please share your experience with me? Thank you very much!!! |
Beta Was this translation helpful? Give feedback.
-
Hi, can you please share the command you run, the version of the software and the error you get? |
Beta Was this translation helpful? Give feedback.
-
Oh, thank you very much!!! The command I ran was "java -Xmx4g -Xms3g -jar C:\mixcr\mixcr.jar align -s hs -p biomed2-human-rna-trbdg "D:\changeSRR14516093.fastq" alignments2.vdjca", the software version was "mixcr4.7.0" and the error log was attached in the file. |
Beta Was this translation helpful? Give feedback.
-
The issue seems to be related to the file formatting. The FASTQ file you’re working with has Windows-style line breaks (CR+LF, i.e., \r\n) instead of the Unix-style line breaks (LF, i.e., \n) expected by the FASTQ reader. If you’re using Linux or Mac, you can fix this by running the following command in the terminal: I also tried downloading the file from https://trace.ncbi.nlm.nih.gov/Traces/sra-reads-be/fastq?acc=SRR14516093 and it worked for me without any issues. Avoid opening the file in a Windows text editor, as it might introduce unwanted line breaks. |
Beta Was this translation helpful? Give feedback.
-
Hi,
As in Izraelson et al. (2017) I am trying to use MIGEC to group my reads by UMI and then MiXCR to extract the repertoires, but I get the following error:
Exception in thread "main" com.milaboratory.core.io.sequence.IllegalFileFormatException: Quality and sequence have different sizes.
at com.milaboratory.core.io.sequence.fastq.FastqRecordsReader.nextRecord(FastqRecordsReader.java:211)
at com.milaboratory.core.io.sequence.fastq.SingleFastqReader.guessFormat(SingleFastqReader.java:325)
at com.milaboratory.core.io.sequence.fastq.SingleFastqReader.(SingleFastqReader.java:257)
at com.milaboratory.core.io.sequence.fastq.SingleFastqReader.(SingleFastqReader.java:65)
at com.milaboratory.core.io.sequence.fastq.PairedFastqReader.(PairedFastqReader.java:60)
at com.milaboratory.mixcr.cli.ActionAlign$AlignParameters.createReader(ActionAlign.java:445)
at com.milaboratory.mixcr.cli.ActionAlign.go(ActionAlign.java:192)
at com.milaboratory.cli.JCommanderBasedMain.main(JCommanderBasedMain.java:155)
at com.milaboratory.mixcr.cli.Main.main(Main.java:115)
Did this happen to you before? Any idea on how to solve the issue or on another approach that I can use?
Many thanks in advance,
Ana
Beta Was this translation helpful? Give feedback.
All reactions