Skip to content

Commit 0fa2837

Browse files
committed
Update README.md
1 parent 371d95d commit 0fa2837

1 file changed

Lines changed: 47 additions & 47 deletions

File tree

README.md

Lines changed: 47 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -161,78 +161,78 @@ The directory structure below shows the nature of files/directories used in this
161161

162162
``` sh
163163
$ tree -a ptc-explorer/
164-
├── CONTRIBUTING.md <- Contribution guidelines
164+
├── CONTRIBUTING.md <- Contribution guidelines
165165
166-
├── LICENSE.md <- License for the repo
166+
├── LICENSE.md <- License for the repo
167167
168168
├── README.md
169169
170-
├── .gitignore <- Specifies intentionally untracked files to ignore by git
170+
├── .gitignore <- Specifies intentionally untracked files to ignore by git
171171
172-
├── .dockerignore <- Excludes files from the Docker build context
172+
├── .dockerignore <- Excludes files from the Docker build context
173173
174-
├── .markdownlint.json <- Markdown linting config
174+
├── .markdownlint.json <- Markdown linting config
175175
176-
├── assets/ <- Media files and resources
176+
├── assets/ <- Media files and resources
177177
│ └── ptc-explorer-walkthrough.mp4 <- Application walkthrough video
178178
179-
├── global.R <- Load libraries, datasets
179+
├── global.R <- Load libraries, datasets
180180
181-
├── server.R <- Backend functions for shiny components
181+
├── server.R <- Backend functions for shiny components
182182
183-
├── ui.R <- Frontend functions for shiny components
183+
├── ui.R <- Frontend functions for shiny components
184184
185-
├── user_interface/ <- UI components for each page
186-
│ ├── cite_us_ui.R <- Citation information page layout
187-
│ ├── contact_ui.R <- Team information page layout
185+
├── user_interface/ <- UI components for each page
186+
│ ├── cite_us_ui.R <- Citation information page layout
187+
│ ├── contact_ui.R <- Team information page layout
188188
│ ├── developer_guide_ui.R <- Developer documentation page layout
189-
│ ├── download_ui.R <- Data download page layout
190-
│ ├── gene_search_ui.R <- Gene search page layout
191-
│ ├── home_ui.R <- Home/landing page layout
189+
│ ├── download_ui.R <- Data download page layout
190+
│ ├── gene_search_ui.R <- Gene search page layout
191+
│ ├── home_ui.R <- Home/landing page layout
192192
│ ├── rna_downstream_ui.R <- RNA downstream analysis page layout
193193
│ ├── rna_fusion_ui.R <- RNA fusion analysis page layout
194-
│ ├── user_guide_ui.R <- User documentation page layout
194+
│ ├── user_guide_ui.R <- User documentation page layout
195195
│ ├── wes_additional_ui.R <- Additional WES analysis page layout
196-
│ └── wes_variant_ui.R <- WES variant analysis page layout
197-
198-
├── modules/ <- Reusable UI and server modules
199-
│ ├── dt_mod.R <- Enhanced DataTable components
200-
│ ├── enrichr_mod.R <- Pathway enrichment analysis
201-
│ ├── fusion_filter_mod.R <- RNA fusion filtering
202-
│ ├── gene_info_mod.R <- Gene annotation services
203-
│ ├── gene_search_mod.R <- Gene search functionality
204-
│ ├── meta_plots_mod.R <- Clinical metadata visualization
205-
│ ├── profile_mod.R <- Team photo and social media display
206-
│ ├── reactable_mod.R <- Modern interactive tables
207-
│ ├── variant_filter_mod.R <- Genomic variant filtering
208-
│ └── volcano_mod.R <- Interactive volcano plots
209-
210-
├── data/ <- Sample datasets
211-
│ ├── app_data_pack_*.rds <- Main application datasets
196+
│ └── wes_variant_ui.R <- WES variant analysis page layout
197+
198+
├── modules/ <- Reusable UI and server modules
199+
│ ├── dt_mod.R <- Enhanced DataTable components
200+
│ ├── enrichr_mod.R <- Pathway enrichment analysis
201+
│ ├── fusion_filter_mod.R <- RNA fusion filtering
202+
│ ├── gene_info_mod.R <- Gene annotation services
203+
│ ├── gene_search_mod.R <- Gene search functionality
204+
│ ├── meta_plots_mod.R <- Clinical metadata visualization
205+
│ ├── profile_mod.R <- Team photo and social media display
206+
│ ├── reactable_mod.R <- Modern interactive tables
207+
│ ├── variant_filter_mod.R <- Genomic variant filtering
208+
│ └── volcano_mod.R <- Interactive volcano plots
209+
210+
├── data/ <- Sample datasets
211+
│ ├── app_data_pack_*.rds <- Main application datasets
212212
│ └── ptc_onco_obj_list_*.rds <- Oncoplot object data
213213
214-
├── R/ <- Utility functions
215-
│ ├── load_components.R <- Component loading functions
216-
│ └── utils.R <- General utility functions
214+
├── R/ <- Utility functions
215+
│ ├── load_components.R <- Component loading functions
216+
│ └── utils.R <- General utility functions
217217
218-
├── docs/ <- Documentation files
218+
├── docs/ <- Documentation files
219219
│ ├── DYNAMIC_DATA_LOADING.md <- Dynamic data loading guide
220-
│ ├── LINTING_GUIDE.md <- Code linting and formatting guide
220+
│ ├── LINTING_GUIDE.md <- Code linting and formatting guide
221221
│ ├── MODULES_COMPONENTS.md <- Module and component reference
222222
│ ├── TECHNICAL_REFERENCE.md <- Developer technical reference
223-
│ └── USER_GUIDE.md <- Comprehensive user guide
223+
│ └── USER_GUIDE.md <- Comprehensive user guide
224224
225-
├── www/ <- Static web assets
226-
│ ├── css/ <- Stylesheets
227-
│ ├── img/ <- Images and figures
228-
│ └── js/ <- JavaScript files
225+
├── www/ <- Static web assets
226+
│ ├── css/ <- Stylesheets
227+
│ ├── img/ <- Images and figures
228+
│ └── js/ <- JavaScript files
229229
230-
├── docker/ <- Docker build helper scripts
231-
│ ├── install_bioc.R <- Installs Bioconductor packages
232-
│ ├── install_cran.R <- Installs CRAN packages
233-
│ └── install_github.R <- Installs GitHub packages
230+
├── docker/ <- Docker build helper scripts
231+
│ ├── install_bioc.R <- Installs Bioconductor packages
232+
│ ├── install_cran.R <- Installs CRAN packages
233+
│ └── install_github.R <- Installs GitHub packages
234234
235-
└── Dockerfile <- For containerization
235+
└── Dockerfile <- For containerization
236236
```
237237

238238
## Contributing

0 commit comments

Comments
 (0)