use utf8; package SemanticWeb::Schema::Muscle; # ABSTRACT: A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement. use v5.14; use Moo; extends qw/ SemanticWeb::Schema::AnatomicalStructure /; use MooX::JSON_LD 'Muscle'; use Ref::Util qw/ is_plain_hashref /; # RECOMMEND PREREQ: Ref::Util::XS use namespace::autoclean; our $VERSION = 'v21.0.0'; has antagonist => ( is => 'rw', predicate => '_has_antagonist', json_ld => 'antagonist', ); has blood_supply => ( is => 'rw', predicate => '_has_blood_supply', json_ld => 'bloodSupply', ); has insertion => ( is => 'rw', predicate => '_has_insertion', json_ld => 'insertion', ); has muscle_action => ( is => 'rw', predicate => '_has_muscle_action', json_ld => 'muscleAction', ); has nerve => ( is => 'rw', predicate => '_has_nerve', json_ld => 'nerve', ); 1; __END__ =pod =encoding UTF-8 =head1 NAME SemanticWeb::Schema::Muscle - A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement. =head1 VERSION version v21.0.0 =head1 DESCRIPTION A muscle is an anatomical structure consisting of a contractile form of tissue that animals use to effect movement. =head1 ATTRIBUTES =head2 C The muscle whose action counteracts the specified muscle. A antagonist should be one of the following types: =over =item C =back =head2 C<_has_antagonist> A predicate for the L attribute. =head2 C C The blood vessel that carries blood from the heart to the muscle. A blood_supply should be one of the following types: =over =item C =back =head2 C<_has_blood_supply> A predicate for the L attribute. =head2 C The place of attachment of a muscle, or what the muscle moves. A insertion should be one of the following types: =over =item C =back =head2 C<_has_insertion> A predicate for the L attribute. =head2 C C The movement the muscle generates. A muscle_action should be one of the following types: =over =item C =back =head2 C<_has_muscle_action> A predicate for the L attribute. =head2 C The underlying innervation associated with the muscle. A nerve should be one of the following types: =over =item C =back =head2 C<_has_nerve> A predicate for the L attribute. =head1 SEE ALSO L =head1 SOURCE The development version is on github at L and may be cloned from L =head1 BUGS Please report any bugs or feature requests on the bugtracker website L When submitting a bug or request, please include a test-file or a patch to an existing test-file that illustrates the bug or desired feature. =head1 AUTHOR Robert Rothenberg =head1 COPYRIGHT AND LICENSE This software is Copyright (c) 2018-2022 by Robert Rothenberg. This is free software, licensed under: The Artistic License 2.0 (GPL Compatible) =cut