|
67 | 67 | } |
68 | 68 |
|
69 | 69 | % Fixing space before and after block of code higlight |
70 | | -\BeforeBeginEnvironment{bashcode}{\vspace{-0.5em}} |
71 | | -\AfterEndEnvironment{bashcode}{\par\vspace{-0.5em}} |
72 | | -\BeforeBeginEnvironment{spluscode}{\vspace{-0.5em}} |
73 | | -\AfterEndEnvironment{spluscode}{\par\vspace{-0.5em}} |
| 70 | +\BeforeBeginEnvironment{bashcode}{\vspace{-0.25em}} |
| 71 | +\AfterEndEnvironment{bashcode}{\par\vspace{-0.25em}} |
| 72 | +\BeforeBeginEnvironment{spluscode}{\vspace{-0.25em}} |
| 73 | +\AfterEndEnvironment{spluscode}{\par\vspace{-0.25em}} |
74 | 74 |
|
75 | 75 | % % Fixing space before and after multicols region |
76 | 76 | % \BeforeBeginEnvironment{multicols}{\vspace{-0.5em}} |
@@ -381,7 +381,7 @@ \subsection{General data structure} |
381 | 381 | I ├── Assembly_1 # Gene output directory |
382 | 382 | I ├── ... # More gene output directories... |
383 | 383 | I └── Assembly_16358 # Gene output directory... |
384 | | - I # Plenty of reconstructed contigs, statistics, etc. |
| 384 | + I ... # Plenty of reconstructed contigs, statistics, etc. |
385 | 385 | ├── 3_aligned # Aligned contigs |
386 | 386 | I ├── exons # Aligned exons |
387 | 387 | I ├── introns # Aligned introns |
@@ -429,6 +429,7 @@ \subsection{Data download and start} |
429 | 429 | wget https://botany.natur.cuni.cz/zeisek/hybseq_course_zingibers_0_data.zip |
430 | 430 | # Unpack it |
431 | 431 | unzip hybseq_course_zingibers_0_data.zip |
| 432 | + ls -lha hybseq_course_zingibers/ # See it |
432 | 433 | \end{bashcode} |
433 | 434 | \begin{itemize} |
434 | 435 | \item The archive contains input raw data and reference |
@@ -977,13 +978,16 @@ \subsection{Post-processing gene trees} |
977 | 978 | \end{itemize} |
978 | 979 | \begin{bashcode} |
979 | 980 | # Move qsub logs to the 'trees' directory |
980 | | - cd ~/hybseq_course_zingibers/3_aligned/ && mv HybSeq.genetree.* trees/ |
| 981 | + cd ~/hybseq_course_zingibers/3_aligned/ # Ensure to be in 3_aligned |
| 982 | + mv HybSeq.genetree.* trees/ # Move... |
981 | 983 | # Everything should be moved from XXX/2_seqs/aligned to XXX/3_aligned |
982 | | - mv trees ../4_gene_trees && cd ../ |
| 984 | + mv trees ../4_gene_trees |
| 985 | + cd ../ && ls -lha |
983 | 986 | # Post-process (sort into subdirectories and get lists of gene trees) |
984 | 987 | # all gene trees - provide path to directory with gene trees files |
985 | 988 | ~/hybseq/bin/hybseq_5_gene_trees_4_postprocess.sh 4_gene_trees | tee \ |
986 | 989 | hybseq_gene_trees_postprocess.log |
| 990 | + mv hybseq_gene_trees_postprocess.log 4_gene_trees/ && ls -lha 4_gene_trees/ |
987 | 991 | \end{bashcode} |
988 | 992 | \begin{itemize} |
989 | 993 | \item Wait for tasks to finish, or \href{https://botany.natur.cuni.cz/zeisek/hybseq_course_zingibers_4_gene_trees.zip}{download} and inspect test data |
@@ -1029,7 +1033,7 @@ \section{Comparing gene trees} |
1029 | 1033 | \begin{frame}[fragile]{Install needed R packages} |
1030 | 1034 | \begin{itemize} |
1031 | 1035 | \item The tasks will be done in \href{https://www.r-project.org/}{R} (use e.g. \href{https://posit.co/products/open-source/rstudio/}{RStudio} or \href{https://rkward.kde.org/}{RKWard}) |
1032 | | - \item Use your notebook or e.g. MetaCentrum \href{https://docs.metacentrum.cz/software/ondemand/}{OnDemand} RStudio or \href{https://docs.metacentrum.cz/related/jupyter/}{Jupyter notebook} |
| 1036 | + \item Use your notebook or e.g. MetaCentrum \href{https://docs.metacentrum.cz/en/docs/ondemand}{OnDemand} RStudio or \href{https://docs.metacentrum.cz/en/docs/related/jupyter}{Jupyter notebook} |
1033 | 1037 | \item Following R code is available at \url{https://github.com/V-Z/hybseq-course/blob/master/trees_filtration.r} --- \alert{\textbf{download} it and edit} according to your needs |
1034 | 1038 | \end{itemize} |
1035 | 1039 | \begin{spluscode} |
@@ -1170,7 +1174,7 @@ \subsection{Filtering trees} |
1170 | 1174 | \begin{spluscode} |
1171 | 1175 | trees # See original trees |
1172 | 1176 | # Remove trees identified in the PCoA plot |
1173 | | - trees[c("Assembly_1033", "Assembly_10103", "Assembly_10222")] <- NULL |
| 1177 | + trees[c("Assembly_1033", "Assembly_13627", "Assembly_15852")] <- NULL |
1174 | 1178 | trees # See new object |
1175 | 1179 | # Possibly remove trees with too few tips |
1176 | 1180 | print(trees, details=TRUE) |
@@ -1536,7 +1540,7 @@ \subsection{Comparing trees} |
1536 | 1540 | # Pie chart: concordance (blue) top conflict (green), other conflict |
1537 | 1541 | # (red), no signal (gray). Run phypartspiecharts.py to get the graphics: |
1538 | 1542 | python phypartspiecharts.py --svg_name trees_good_res.svg \ |
1539 | | - parsimony_sp_tree.nwk trees_good_res 20 |
| 1543 | + parsimony_sp_tree.nwk trees_good_res 221 |
1540 | 1544 | \end{bashcode} |
1541 | 1545 | \end{frame} |
1542 | 1546 |
|
|
0 commit comments