Skip to content

Commit

Permalink
Add changelog description, add config keyword and reorder lines
Browse files Browse the repository at this point in the history
  • Loading branch information
emmarousseau committed Mar 18, 2024
1 parent a875b4e commit 60c92b2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@

* `star/star_align_reads`: Align reads to a reference genome (PR #22).

* `gffread`: Validate, filter, convert and perform other operations on GFF files (PR #25).

## MAJOR CHANGES

## MINOR CHANGES
Expand Down
2 changes: 1 addition & 1 deletion src/gffread/config.vsh.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: gffread
namespace: gffread
description: Validate, filter, convert and perform various other operations on GFF files.
keywords: [gff, conversion, validation]
keywords: [gff, conversion, validation, filtering]
links:
homepage: https://ccb.jhu.edu/software/stringtie/gff.shtml#gffread
documentation: https://ccb.jhu.edu/software/stringtie/gff.shtml#gffread
Expand Down
8 changes: 4 additions & 4 deletions src/gffread/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ diff "$expected_output_dir/transcripts.fa" "$test_output_dir/transcripts.fa" ||

echo "> Test 4 - Generate table from GFF annotation file"

# reference output annotation.tbl was created manually with gffread 0.12.7

"$meta_executable" \
--table @id,@chr,@start,@end,@strand,@exons,Name,gene,product \
--outfile "$test_output_dir/annotation.tbl" \
Expand All @@ -109,12 +111,10 @@ echo ">> Compare output to expected output"
diff "$expected_output_dir/annotation.tbl" "$test_output_dir/annotation.tbl" || \
(echo "Output file annotation.tbl does not match expected output" && exit 1)

# reference output annotation.tbl was created manually with gffread 0.12.7

################################################################################

echo "> All tests successful"

rm -r "$test_output_dir"

echo "> All tests successful"

exit 0

0 comments on commit 60c92b2

Please sign in to comment.