Skip to content

Commit

Permalink
Added gitpages update script
Browse files Browse the repository at this point in the history
  • Loading branch information
IdoBar committed Feb 6, 2025
1 parent 2cca4f3 commit 920d1c1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 3 deletions.
24 changes: 21 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<meta name="author" content="Niki Nenadic and Ido Bar" />

<meta name="date" content="2025-01-29" />
<meta name="date" content="2025-01-30" />

<title>Transcriptome analysis of Marteilia sydneyi and Saccostrea glomerata during QX infection in Sydney Rock Oysters</title>

Expand Down Expand Up @@ -3359,7 +3359,7 @@

<h1 class="title toc-ignore">Transcriptome analysis of <em>Marteilia sydneyi</em> and <em>Saccostrea glomerata</em> during QX infection in Sydney Rock Oysters</h1>
<h4 class="author">Niki Nenadic and Ido Bar</h4>
<h4 class="date">29 January 2025</h4>
<h4 class="date">30 January 2025</h4>

</div>

Expand Down Expand Up @@ -4075,7 +4075,7 @@ <h4>Gene Expression Analysis</h4>
</div>
<div id="general-information" class="section level2">
<h2>General information</h2>
<p>This document was last updated at 2025-01-29 23:29:50 using R Markdown (built with R version 4.2.1 (2022-06-23 ucrt)). The source code for this webpage can be found at <a href="https://github.com/IdoBar/QX_bioinfo_analysis" class="uri">https://github.com/IdoBar/QX_bioinfo_analysis</a> (or via the GitHub logo at the top right corner of this page).</p>
<p>This document was last updated at 2025-01-30 00:05:10 using R Markdown (built with R version 4.2.1 (2022-06-23 ucrt)). The source code for this webpage can be found at <a href="https://github.com/IdoBar/QX_bioinfo_analysis" class="uri">https://github.com/IdoBar/QX_bioinfo_analysis</a> (or via the GitHub logo at the top right corner of this page).</p>
<p>Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. It is especially powerful at authoring documents and reports which include code and can execute code and use the results in the output. For more details on using R Markdown see <a href="http://rmarkdown.rstudio.com" class="uri">http://rmarkdown.rstudio.com</a>, <a href="https://bookdown.org/yihui/rmarkdown/">R Markdown: The Definitive Guide</a> and <a href="https://rstudio.github.io/cheatsheets/html/rmarkdown.html">Rmarkdown cheatsheet</a>.</p>
<hr />
</div>
Expand Down Expand Up @@ -4149,6 +4149,24 @@ <h2>Bibliography</h2>
</div>
</div>

<script type="text/javascript">
(function() {
var links = document.getElementsByTagName('a'), link, n, child;
for (var i = 0; i < links.length; i++) {
link = links[i];
if (/^(https?:)?\/\//.test(link.getAttribute('href'))) {
link.target = '__blank';
n = link.childElementCount;
if (n === 0 && link.innerText) {
link.innerHTML += ' &boxbox;'; // pure text
} else if (n === 2) {
// the page /formats.html
child = link.firstElementChild;
if (child.className === 'formatName') child.innerHTML += ' &boxbox;';
}
}
}
})();</script>


</div>
Expand Down
5 changes: 5 additions & 0 deletions update_gitpage.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash
cp QX_bioinfo_analysis.html index.html
git add .
git commit -m "$1"
git push

0 comments on commit 920d1c1

Please sign in to comment.