FASTQ File Comparison
Hello Community,
is there existing software or algorithms two compare genome files, possibly determine if they are the same or not?
Thanks :)
sequencing
genome
• 3,167 views
•
link
written
by
biohacker_tobe •
0 answers
No answers yet.
Log in to answer this question.
More posts like this
-
Comparing Two Fastq Files Linux
written by joe_genome •Hello community, I've read different methods on using linux commands such as **diff** to compare the content between text files, was trying to apply this …
-
Gene Cluster Detection
written by biohacker_tobe •Hey community! I wanted to create the following image which locates gene clusters on a Multiple Sequence Alignment, I have already aligned my genomes with …
-
Mauve Alignment Viewer
written by biohacker_tobe •Hello community, I was able to conduct a multiple whole genome alignment of my strains with ProgressiveMauve, however I want to visualize my alignment possible …
-
Gene Cluster Annotation
written by biohacker_tobe •Hey community :) I want to first conduct an alignment on my bacterial genomes (these vary in size) for which I was thinking of using …
-
Co-Occurrence Network Graph & Statistics
written by biohacker_tobe •I am trying to make a co-occurrence network graph for my presence/absence data of genes per genomes but am unsure how to go about with …
-
Gene Cluster Phylogenetic Tree
written by biohacker_tobe •Hello community :) Question 1. I am comparing the usage of two clustering algorithms, MCL and antiSMASH over a set of predetermined genomes. I have …
-
how to read .fai and .gz file
written by tommaso.gastaldi •Hello to everyone, I'm new in the big world of bioinformatic. I downloaded two files sent by the Core Facility with which I will perform …
-
Indel concordance from different VCF files
written by tejaswikogantiHello, I am trying to compare SNP's and INDELS from two VCF files that belong to the same sample but run on different instruments. SNP's …
-
Vcf-compare two multi-sample vcf files
written by ABHi, I have two large multi-sample vcf files. The samples in both files are the same except the snp's were called using different programs. i …
-
Adme-Tox Open Source Tool
written by Anuraj Nayarisseri •Hello Guys, I am working on some CETP Inhibitors compounds like 2-arylbenzoxazole - I wish to calculate the ADME. Is there any one open source …
how do you want to compare it ? they're exactly the same ? same but unordered sequences ?
I'm not sure if these files are the same. I have a directory with different FASTQ files, basically what I want to see if they are exactly the same. Was thinking of comparing sequence/quality lengths and labels...
You need to be very specific in defining your requirement. Are you thinking there are identical copy of the data with a different file name or do you think it is the same sample(s) that was re-sequenced again?
Sorry for the lack of clarification on my behalf... I believe that it's possible that I have samples that have been re-sequenced again.
So basically you want to see if these are technical sequencing replicates or not.
You could align the data independently to a reference and see if you are able to call identical SNP's for the data files. Short of knowing real experimental provenance this is likely be the closest you can informatically get to deciding if the data came from the same sample.
I think you can still use the hash approach, but look at
mashdistances instead.I think you can do it with fastqs, but not 100% sure. This will tell you to some level of accuracy that the genomes are very similar or the same. An actual md5sum will only work if the files are identical as others pointed out, so a resequencing of the same sample/genome will not necessarily give you an identical md5, but a
mashdistance should be instructive.If you can't use fastqs, you can definitely use contigs, so you can just assemble your data first.
do a hash (md5sum) and compare the hashes. or post an example how you want to compare. Please note that I am aware of fastq format. Do not share the link to fastq format.
That's an interesting take to this problem, this is an example. As you can see both are the same, I just would like a negative or positive reply depending on if they are the same or not. FASTQ file 1:
FASTQ file 2:
If you have visual evidence like this then using a hash my be fine.
Let me illustrate a variation. Even if there is a single difference e.g. switched order of sequences.
Here is file2
then this will produce a different sum even though the data is the same.
This looks awesome, I will definitely try this out :)