You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the manifest has lists bam files with the same name in different directories (e.g. SRR12801019/Aligned.sortedByCoord.out.bam), the corresponding bed files created by splicedice bam_to_junc_bed will all be named _junction_beds/Aligned.sortedByCoord.out.junc.bed and will overwrite each other.
example of failure
Bam manifest used as input to splicedice bam_to_junc_bed
A19 /mnt/output/star_2.7.11b_2024.12.13/SRR12801019/Aligned.sortedByCoord.out.bam HEK control
A20 /mnt/output/star_2.7.11b_2024.12.13/SRR12801020/Aligned.sortedByCoord.out.bam HEK SUGP1_knockdown
A23 /mnt/output/star_2.7.11b_2024.12.13/SRR12801023/Aligned.sortedByCoord.out.bam HEK control
A24 /mnt/output/star_2.7.11b_2024.12.13/SRR12801024/Aligned.sortedByCoord.out.bam HEK SUGP1_knockdown
Bed manifest generated by splicedice bam_to_junc_bed; note that all bed files have the same path
A19 /mnt/output/splicedice_2024.12.18_02.10.36/_junction_beds/Aligned.sortedByCoord.out.junc.bed HEK control
A20 /mnt/output/splicedice_2024.12.18_02.10.36/_junction_beds/Aligned.sortedByCoord.out.junc.bed HEK SUGP1_knockdown
A23 /mnt/output/splicedice_2024.12.18_02.10.36/_junction_beds/Aligned.sortedByCoord.out.junc.bed HEK control
A24 /mnt/output/splicedice_2024.12.18_02.10.36/_junction_beds/Aligned.sortedByCoord.out.junc.bed HEK SUGP1_knockdown
looking for differences in the pairwise.tsv output from the end of the pipeline
If the manifest has lists bam files with the same name in different directories (e.g. SRR12801019/Aligned.sortedByCoord.out.bam), the corresponding bed files created by
splicedice bam_to_junc_bed
will all be named _junction_beds/Aligned.sortedByCoord.out.junc.bed and will overwrite each other.example of failure
Bam manifest used as input to
splicedice bam_to_junc_bed
Bed manifest generated by
splicedice bam_to_junc_bed
; note that all bed files have the same pathlooking for differences in the pairwise.tsv output from the end of the pipeline
cat pairwise.tsv | grep -v clusterID | cut -f2-7 | sort | uniq | wc -l
example of success
create links to bam files containing a unique name and update the manifest
Bam manifest used as input to
splicedice bam_to_junc_bed
Bed manifest generated by
splicedice bam_to_junc_bed
; note that all bed files are uniquelooking for differences in the pairwise.tsv output from the end of the pipeline
cat pairwise.tsv | grep -v clusterID | cut -f2-7 | sort | uniq | wc -l
potential solutions
The text was updated successfully, but these errors were encountered: