-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Help me debug step 3 in HaploFill #8
Comments
Hi, Sorry for the late answer. Could you please indicate me the file mentioning this HaploFill step 3? |
Hi, thank you for your response. I figure that part out, but I have a new part I need help troubleshooting. For background, the genome assembly.fasta was generated using Flye --keep-haplotypes --meta with ONT reads of a mean qc 18 and min read length of 10k. Final mean coverage in the flye.log was 46x. I used this fasta file for HaploSplit, then I used HaploBreak to break the Ns. Now, I'm inputting in HaploFill.py the following:
|
I usually run HaploFill with the following command: python HaploFill.py -1 ${hap1}.fasta -2 ${hap2}.fasta -U ${unplaced}.fasta -c correspondance.txt --exclusion exclusion.txt -r ${repeats}.gff3 --repeats_format GFF3 -o ${haplofill_run} -C --b1 illumina.on.${hap1}.sorted.bam --b2 illumina.on.${hap2}.sorted.bam > ${haplofill_run}.log 2> ${haplofill_run}.err Here is an example on how to get the paired-end illumina alignments bwa index ${hapx}.fasta
bwa mem -t 24 ${hapx}.fasta ${reads_1}.fq.gz ${reads_2}.fq.gz | samtools view -bS -T ${hapx}.fasta - | samtools sort -l 9 -@ 24 -m 1500M -o illumina.on.${hapx}.sorted.bam
samtools index illumina.on.${hapx}.sorted.bam Hope it helps. Please post the content of the error message if you encounter any issues. |
Hi,
I need help with troubleshooting HaploFill step 3.
I edited my original post for simplicity because I think I solved my own problem. Nevertheless, for the repeats.bed file, should i include repetitive regions of all .fasta files; hap1, hap2, and Unplaced?
The text was updated successfully, but these errors were encountered: