Skip to content

Commit d8efa89

Browse files
committedAug 18, 2016
UPDATE: Replace link to the old genomic platform websites by the new ones.
1 parent 9faf2a6 commit d8efa89

13 files changed

+21
-23
lines changed
 

‎INSTALL.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ INSTALLING Aozan
33

44
To install Aozan, see the documentation on our website :
55

6-
http://transcriptome.ens.fr/aozan
6+
http://outils.genomique.biologie.ens.fr/aozan

‎src/main/java/files/template_index_run.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,6 @@ <h3>Quality control reports</h3>
140140
</div>
141141
<!--END_SECTION-->
142142
</div>
143-
<div class="footer">Generated by <a href="http://transcriptome.ens.fr/aozan">Aozan </a>(version ${VERSION})</div>
143+
<div class="footer">Generated by <a href="${WEBSITE}">${APP_NAME} </a>(version ${VERSION})</div>
144144
</body>
145145
</html>

‎src/main/python/common.py

+4-6
Original file line numberDiff line numberDiff line change
@@ -727,12 +727,10 @@ def create_html_index_file(conf, run_id, sections):
727727
write_lines = True
728728

729729
elif write_lines is True:
730-
if '${RUN_ID}' in line:
731-
result += line.replace('${RUN_ID}', run_id) + '\n'
732-
elif '${VERSION}' in line:
733-
result += line.replace('${VERSION}', Globals.APP_VERSION_STRING) + '\n'
734-
else:
735-
result += line + '\n'
730+
result += line.replace('${RUN_ID}', run_id). \
731+
replace('${APP_NAME}', Globals.APP_NAME). \
732+
replace('${VERSION}', Globals.APP_VERSION_STRING). \
733+
replace('${WEBSITE}', Globals.WEBSITE_URL) + '\n'
736734

737735
f_out = open(output_file_path, 'w')
738736
f_out.write(result)

‎src/site/resources/quality_control_example_project/2013_0001_ATCACG_L001_R1_001-fastqscreen.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ <h2 style="text-align:center">Data simulated</h2>
211211
</p>
212212
<p>&nbsp;</p>
213213
</div>
214-
<div class="footer"> Site <a href="http://transcriptome.ens.fr/aozan">Aozan</a>
214+
<div class="footer"> Site <a href="@@@WEBSITE@@@">@@@APPNAME@@@</a>
215215
(version 1.2) </div>
216216
</body>
217217
</html>

‎src/site/resources/quality_control_example_project/Project_name_1-fastqscreen.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ <h3>Sample: 2014_442</h3>
453453
</div>
454454
<div class="footer">
455455
Generated by
456-
<a href="http://transcriptome.ens.fr/aozan">Aozan</a>
456+
<a href="@@@WEBSITE@@@">@@@APPNAME@@@</a>
457457
(version 1.4)
458458

459459
</div>

‎src/site/resources/quality_control_example_project/lane1-potentialindices.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -2089,8 +2089,8 @@
20892089
<div class="footer">
20902090
<span>
20912091
Generated by
2092-
<a href="http://transcriptome.ens.fr/aozan">
2093-
Aozan
2092+
<a href="@@@WEBSITE@@@">
2093+
@@@APPNAME@@@
20942094
</a>
20952095
(version 1.3
20962096
)

‎src/site/resources/quality_control_example_project/lane2_Undetermined_L002_R1_001-potentialindices.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -16920,9 +16920,9 @@
1692016920
<p>_</p>
1692116921
</div>
1692216922
<div class="footer">
16923-
<span> Generated by <a href="http://transcriptome.ens.fr/aozan">
16924-
Aozan </a> (version 1.3 )
16923+
<span> Generated by <a href="@@@WEBSITE@@@">
16924+
@@@APPNAME@@@ </a> (version 1.3 )
1692516925
</span>
1692616926
</div>
1692716927
</body>
16928-
</html>
16928+
</html>

‎src/site/resources/quality_control_example_report.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ <h3>Read 1</h3>
10741074
</table>
10751075
<p>&nbsp;</p>
10761076
</div>
1077-
<div class="footer"> Generated by <a href="http://transcriptome.ens.fr/aozan">Aozan</a>
1077+
<div class="footer"> Generated by <a href="@@@WEBSITE@@@">@@@APPNAME@@@</a>
10781078
(version 1.4) </div>
10791079
</body>
10801080
</html>

‎src/site/site.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<bannerLeft>
3131
<name>ENS</name>
3232
<src>images/logo_genomicpariscentre-90pxh.png</src>
33-
<href>http://transcriptome.ens.fr/sgdb</href>
33+
<href>https://www.genomique.biologie.ens.fr/</href>
3434
</bannerLeft>
3535
<bannerRight>
3636
<name>Aozan</name>
@@ -40,7 +40,7 @@
4040
<body>
4141
<links>
4242
<item name="Genomic Paris Centre"
43-
href="http://transcriptome.ens.fr" />
43+
href="https://www.genomique.biologie.ens.fr" />
4444
<item name="École normale supérieure"
4545
href="http://www.ens.fr" />
4646
</links>

‎src/site/xdoc/installing.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<ul>
4242
<li><a href="download.html">Download Aozan</a> on our website.</li>
4343

44-
<source>$ wget http://transcriptome.ens.fr/aozan/aozan-@@@VERSION@@@.tar.gz</source>
44+
<source>$ wget @@@WEBSITE@@@/aozan-@@@VERSION@@@.tar.gz</source>
4545

4646
<li>Unzip the archive where you want install the software.</li>
4747

‎src/site/xdoc/qc-samples-tests.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@
190190
<p>To avoid too long computation, the mapping on genomes is limited to a small set of the reads of the FASTQ files.
191191
By default 200,000 reads PF (passing illumina filters) are used for each sample (It's enough for estimate the contamination in a sample).</p>
192192

193-
<p>Aozan reuses <a href="http://transcriptome.ens.fr/eoulsan" target="_blank">Eoulsan</a> to handle alignments and
194-
especially the <a href="http://transcriptome.ens.fr/eoulsan/datarepositories.html" target="_blank">repository system for genomes and genomes indexes</a>.</p>
193+
<p>Aozan reuses <a href="http://outils.genomique.biologie.ens.fr/eoulsan" target="_blank">Eoulsan</a> to handle alignments and
194+
especially the <a href="http://outils.genomique.biologie.ens.fr/eoulsan/datarepositories.html" target="_blank">repository system for genomes and genomes indexes</a>.</p>
195195

196196
<p>If no FastQ Screen test property is set, FastQ Screen will not be launch on FASTQ data.</p>
197197

‎src/site/xdoc/quickstart.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
Executing these tasks after each sequencing process is a laborious job. Aozan allows to
8989
save time by automate all these tasks. In addition, Aozan provide a Bcl2fastq CSV samplesheet generator
9090
from an XLS file to avoid common syntax errors in the CSV file and to allow usage of alias for the index
91-
sequences. This tool is available <a href="http://transcriptome.ens.fr/designvalidator">here</a>.
91+
sequences. This tool is available <a href="http://outils.genomique.biologie.ens.fr/samplesheetvalidator/">here</a>.
9292
</p>
9393
</section>
9494

‎src/site/xdoc/writingplugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ $ mvn archetype:generate \
8484
-DgroupId=com.example \
8585
-DartifactId=myaozanplugin \
8686
-Dversion=0.1-alpha-1 \
87-
-Durl=http://transcriptome.ens.fr/aozanplugin \
87+
-Durl=http://example.com/aozanplugin \
8888
-DinteractiveMode=false
8989
</source>
9090

0 commit comments

Comments
 (0)
Please sign in to comment.