Skip to content

Commit a33c4e2

Browse files
committed
v1.7.2
1 parent 8b90d42 commit a33c4e2

14 files changed

+28
-15
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [1.7.2] - 2023-03-20
9+
### Changed
10+
- Better support for historical PacBio RSII reads.
11+
- Cleaner TE output in the final annotation GFF3 file.
12+
813
## [1.7.1] - 2023-01-28
914
### Fixed
1015
- A bug leading to the loss of detailed TE subtype info in the final annotation GFF3 file.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
84 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

Project_Template/00.Long_Reads/LRSDAY.00.Long_Reads_Preprocessing.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ reads_type="nanopore-raw" # The long reads data type: "pacbio-raw" or "pacbio-co
1313
run_filtering="yes" # Whether to filter and downsample the reads: "yes" or "no". Default = "yes".
1414
genome_size="12500000" # The haploid genome size (in bp) of sequenced organism. Default = "12500000" (i.e. 12.5 Mb for the budding yeast S. cereviaie genome). This is used to calculate targeted sequencing coverage after read filtering (see below).
1515
post_filtering_coverage="60" # Targeted sequencing coverage after read filtering and downsampling. Default = "60" (i.e. 60x coverage).
16-
threads=24 # The number of threads to use. Default = "4".
16+
threads=4 # The number of threads to use. Default = "4".
1717

1818
#######################################
1919
# process the pipeline

Project_Template/00.Long_Reads/LRSDAY.00.PacBio.RSII_bax2bam.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ pacbio_RSII_bax_fofn_file="./pacbio_fofn_files/$prefix.RSII_bax.fofn" # The fofn
1313
#######################################
1414
# process the pipeline
1515

16-
source $miniconda2_dir/activate $conda_pacbio_dir/../../conda_pacbio_env
17-
$conda_pacbio_dir/bax2bam \
16+
#source $miniconda2_dir/activate $conda_pacbio_dir/../../conda_pacbio_env
17+
18+
$bax2bam_dir/bax2bam \
1819
--fofn=$pacbio_RSII_bax_fofn_file \
1920
-o ./pacbio_fofn_files/$prefix.bax2bam \
2021
--subread \
21-
--pulsefeatures=DeletionQV,DeletionTag,InsertionQV,IPD,MergeQV,SubstitutionQV,PulseWidth,SubstitutionTag
22+
--pulsefeatures=DeletionQV,DeletionTag,InsertionQV,IPD,MergeQV,SubstitutionQV,PulseWidth,SubstitutionTag \
23+
--allowUnrecognizedChemistryTriple
2224

2325
cd pacbio_fofn_files
2426
rm $prefix.bax2bam.scraps.bam

Project_Template/11.TE_Annotation/LRSDAY.11.TE_Annotation.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,13 +111,14 @@ $bedtools_dir/bedtools intersect -v -a $prefix.TY_soloLTR.refined.nr.gff -b $pre
111111

112112
cat $prefix.TY.complete_plus_truncated.final.gff $prefix.TY.soloLTR.final.gff > $prefix.TY.all.final.gff
113113

114-
#perl $LRSDAY_HOME/scripts/tidy_maker_gff3.pl -r ./../$prefix.genome.fa -i $prefix.TY.all.final.gff -o $prefix.TE.gff3 -t $prefix
115-
perl $LRSDAY_HOME/scripts/tidy_TE_gff3.pl -r ./../$prefix.genome.fa -i $prefix.TY.all.final.gff -o ./../$prefix.nuclear_genome.TE.gff3 -t $prefix
114+
perl $LRSDAY_HOME/scripts/tidy_TE_gff3.pl -r ./../$prefix.genome.fa -i $prefix.TY.all.final.gff -o $prefix.nuclear_genome.TE.raw.gff3 -t $prefix
115+
perl $LRSDAY_HOME/scripts/adjust_TY_annotation_for_gff3.pl -i $prefix.nuclear_genome.TE.raw.gff3 -o ./../$prefix.nuclear_genome.TE.gff3
116116

117117

118118
if [[ $debug == "no" ]]
119119
then
120120
rm $prefix.*.final.gff
121+
rm $prefix.nuclear_genome.TE.raw.gff3
121122
fi
122123

123124
cd ..

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Jia-Xing Yue & Gianni Liti. (2018) Long-read sequencing data analysis for yeasts
2222
Jia-Xing Yue, Jing Li, Louise Aigrain, Johan Hallin, Karl Persson, Karen Oliver, Anders Bergström, Paul Coupland, Jonas Warringer, Marco Cosentino Lagomarsino, Gilles Fischer, Richard Durbin, Gianni Liti. (2017) Contrasting evolutionary genome dynamics between domesticated and wild yeasts. *Nature Genetics*, 49:913-924.
2323

2424
## Release history
25-
* v1.7.1 Released on 2022/01/28
25+
* v1.7.2 Released on 2023/03/20
26+
* v1.7.1 Released on 2023/01/28
2627
* v1.7.0 Released on 2022/12/31
2728
* v1.6.0 Released on 2019/10/03
2829
* v1.5.0 Released on 2019/05/13

0 commit comments

Comments
 (0)