Skip to content

Commit faea518

Browse files
authored
Add README.md
1 parent ad8ac2b commit faea518

File tree

1 file changed

+61
-0
lines changed

1 file changed

+61
-0
lines changed

README.md

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
ReadXplorer
2+
===========
3+
4+
Visualization and Analysis of Mapped Sequences
5+
-----------
6+
7+
ReadXplorer is a freely available comprehensive exploration and evaluation tool for NGS data. It extracts and adds quantity and quality measures to each alignment in order to classify the mapped reads. This classification is then taken into account for the different data views and all supported automatic analysis functions.
8+
9+
ReadXplorer is implemented in Java as a Netbeans rich client application. Utilizing a modular programming structure, it enables developers to create their own highly specialized software modules and easily plug them into ReadXplorer.
10+
11+
Here, the **source code** of ReadXplorer is freely available. For **more information** and the **download for end-users** please visit http://www.readxplorer.org
12+
13+
14+
-----------
15+
When developing code for ReadXplorer, we advise you to use the following **Maven repositories** in your Netbeans ```settings.xml``` to resolve all dependencies:
16+
```
17+
<repository>
18+
<id>netbeans</id>
19+
<url>http://bits.netbeans.org/maven2/</url>
20+
<releases>
21+
<enabled>true</enabled>
22+
</releases>
23+
</repository>
24+
<repository>
25+
<id>central</id>
26+
<url>http://central.maven.org/maven2/</url>
27+
<releases>
28+
<enabled>true</enabled>
29+
</releases>
30+
</repository>
31+
<repository>
32+
<id>sonatype</id>
33+
<url>https://oss.sonatype.org/content/repositories/releases/</url>
34+
<releases>
35+
<enabled>true</enabled>
36+
</releases>
37+
</repository>
38+
```
39+
```
40+
<pluginRepository>
41+
<id>netbeans</id>
42+
<url>http://bits.netbeans.org/maven2/</url>
43+
<releases>
44+
<enabled>true</enabled>
45+
</releases>
46+
</pluginRepository>
47+
<pluginRepository>
48+
<id>central</id>
49+
<url>http://central.maven.org/maven2/</url>
50+
<releases>
51+
<enabled>true</enabled>
52+
</releases>
53+
</pluginRepository>
54+
<pluginRepository>
55+
<id>sonatype</id>
56+
<url>https://oss.sonatype.org/content/repositories/releases/</url>
57+
<releases>
58+
<enabled>true</enabled>
59+
</releases>
60+
</pluginRepository>
61+
```

0 commit comments

Comments
 (0)