Skip to content

Commit

Permalink
note on input/output formats
Browse files Browse the repository at this point in the history
  • Loading branch information
lskatz committed Feb 5, 2024
1 parent 8a362b6 commit e41ca44
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,10 @@ Instructions for how to contribute can be found in [CONTRIBUTING.md](CONTRIBUTIN

## Fasten script descriptions

|script |Description|
All executables read and write in the fastq format
except `fasten_convert`.

|executable |Description|
|-------------------|-----------|
|[`fasten_clean`](https://lskatz.github.io/fasten/fasten_clean) | Trims and cleans a fastq file.|
|[`fasten_convert`](https://lskatz.github.io/fasten/fasten_convert) | Converts between different sequence formats like fastq, sam, fasta.|
Expand Down
10 changes: 5 additions & 5 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,11 @@ pub fn fasten_base_options_matches(brief:&str, opts:Options) -> Matches{
.file_stem().unwrap()
.to_str().unwrap();
println!("{}: {}\n\n{}",
&prog_name,
&brief,
&opts.usage(
&opts.short_usage(&prog_name)
),
&prog_name,
&brief,
&opts.usage(
&opts.short_usage(&prog_name)
),
);
std::process::exit(0);
}
Expand Down

0 comments on commit e41ca44

Please sign in to comment.