Hi, I can generate genome from STARconsensus pipeline using this command
STAR \
--runThreadN 15 \
--runMode genomeGenerate \
--genomeDir $star_genome_outdir \
--genomeFastaFiles $ref_fasta \
--sjdbGTFfile $annotation_path \
--sjdbOverhang 150 \
--genomeTransformVCF $vcf_file \
--genomeTransformType Haploid
However, I also want to obtain the GTF file transformed by variants inserted in the VCF file for other analysis. How can I generate it? Thank you