File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -734,35 +734,33 @@ def print_completion_message(report_type: str):
734734 Prints a formatted completion message after report generation.
735735 """
736736 border = "─" * 65 # Creates a separator line
737- print (f"\n { border } \n 🎉 Pipeline Execution Complete! 🎉\n " )
738-
739737 if report_type == "streamlit" :
740738 print (
741739 """🚀 Streamlit Report Generated!
742740
743741📂 All scripts to build the Streamlit app are available at:
744- nf_container_results/ streamlit_report/sections
742+ streamlit_report/sections
745743
746744▶️ To run the Streamlit app, use the following command:
747- streamlit run nf_container_results/ streamlit_report/sections/report_manager.py
745+ streamlit run streamlit_report/sections/report_manager.py
748746
749747✨ You can extend the report by adding new files to the input directory or updating the config file.
750748
751749🛠️ Advanced users can modify the Python scripts directly in:
752- nf_container_results/ streamlit_report/sections
750+ streamlit_report/sections
753751"""
754752 )
755753 else :
756754 print (
757755 f"""🚀 { report_type .capitalize ()} Report Generated!
758756
759757📂 Your { report_type } report is available at:
760- nf_container_results/ quarto_report
758+ quarto_report
761759
762760✨ You can extend the report by adding new files to the input directory or updating the config file.
763761
764762🛠️ Advanced users can modify the report template directly in:
765- nf_container_results/ quarto_report/quarto_report.qmd
763+ quarto_report/quarto_report.qmd
766764"""
767765 )
768766
You can’t perform that action at this time.
0 commit comments