File tree Expand file tree Collapse file tree 2 files changed +47
-16
lines changed Expand file tree Collapse file tree 2 files changed +47
-16
lines changed Original file line number Diff line number Diff line change 1
1
# FASTQ4J
2
- FASTQ4J file format Java Utils
2
+ Java Utilities for the FASTQ file format
3
+
4
+ ## Examples
5
+
6
+ Stream<Sequence> sequences = FASTQUtils.read()
7
+ .from(new File("some_file.fastq"))
8
+ .getSequences();
9
+
10
+ # Maven Snapshots
11
+
12
+ <dependency>
13
+ <groupId>org.omnaest.genomics</groupId>
14
+ <artifactId>FASTQ4J</artifactId>
15
+ <version>0.0.1-SNAPSHOT</version>
16
+ </dependency>
17
+
18
+ <repositories>
19
+ <repository>
20
+ <id>ossrh</id>
21
+ <url>https://oss.sonatype.org/content/repositories/snapshots</url>
22
+ <snapshots>
23
+ <enabled>true</enabled>
24
+ </snapshots>
25
+ </repository>
26
+ </repositories>
Original file line number Diff line number Diff line change 1
- <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
2
- <modelVersion >4.0.0</modelVersion >
3
- <groupId >org.omnaest.genomics</groupId >
4
- <artifactId >FASTQ4J</artifactId >
5
-
6
-
7
- <parent >
1
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
2
+ xmlns:xsi=" http://www.w3.org/2001/XMLSchema-instance"
3
+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
4
+ <modelVersion >4.0.0</modelVersion >
5
+ <groupId >org.omnaest.genomics</groupId >
6
+ <artifactId >FASTQ4J</artifactId >
7
+
8
+
9
+ <parent >
8
10
<groupId >org.omnaest.utils</groupId >
9
11
<artifactId >CommonsParent</artifactId >
10
12
<version >0.0.1-SNAPSHOT</version >
11
13
</parent >
12
-
13
- <licenses >
14
+
15
+ <licenses >
14
16
<license >
15
17
<name >The Apache Software License, Version 2.0</name >
16
18
<url >http://www.apache.org/licenses/LICENSE-2.0.txt</url >
30
32
<java .version>1.8</java .version>
31
33
</properties >
32
34
33
- <dependencies >
34
-
35
-
36
-
37
-
35
+ <repositories >
36
+ <repository >
37
+ <id >ossrh</id >
38
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
39
+ <snapshots >
40
+ <enabled >true</enabled >
41
+ </snapshots >
42
+ </repository >
43
+ </repositories >
38
44
45
+ <dependencies >
39
46
<dependency >
40
47
<groupId >org.omnaest.utils</groupId >
41
48
<artifactId >CommonsLangAndIO</artifactId >
58
65
<version >0.0.1-SNAPSHOT</version >
59
66
</dependency >
60
67
</dependencies >
61
-
68
+
62
69
</project >
You can’t perform that action at this time.
0 commit comments